diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-12-30 13:50:49 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-12-30 13:50:49 +0000 |
commit | 94e94b350652d3a71993bbc7d44afbe3b304605e (patch) | |
tree | 609b531981802fca42e99c872a3191b1219634c8 /include/llvm/Attributes.h | |
parent | 8b62abdd7b9c8fc5d78dad86093f4afdfeba949d (diff) |
Use the predicate methods off of AttributeSet instead of Attribute.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171257 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Attributes.h')
-rw-r--r-- | include/llvm/Attributes.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/Attributes.h b/include/llvm/Attributes.h index 8ce7651ae9..08063c15ed 100644 --- a/include/llvm/Attributes.h +++ b/include/llvm/Attributes.h @@ -143,9 +143,8 @@ public: static Attribute decodeLLVMAttributesForBitcode(LLVMContext &C, uint64_t EncodedAttrs); - /// \brief The set of attributes set in Attribute is converted to a string of - /// equivalent mnemonics. This is, presumably, for writing out the mnemonics - /// for the assembly writer. + /// \brief The Attribute is converted to a string of equivalent mnemonic. This + /// is, presumably, for writing out the mnemonics for the assembly writer. std::string getAsString() const; }; |