diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-01-23 00:45:55 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-01-23 00:45:55 +0000 |
commit | 8246df61f6de716acf1f8c64fac3c19970a2c174 (patch) | |
tree | eea5feb78eb13d53687b1211b304c2388ef2f63c /include/llvm/IR/Function.h | |
parent | 4d79724e130e69e3ce6327680460f399c18cb7eb (diff) |
Use the AttributeSet when removing multiple attributes. Use Attribute::AttrKind
when removing one attribute. This further encapsulates the use of the attributes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173214 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/IR/Function.h')
-rw-r--r-- | include/llvm/IR/Function.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/IR/Function.h b/include/llvm/IR/Function.h index 46feb8ba28..fe27d9b75d 100644 --- a/include/llvm/IR/Function.h +++ b/include/llvm/IR/Function.h @@ -189,7 +189,7 @@ public: void addAttributes(unsigned i, AttributeSet attrs); /// @brief removes the attributes from the list of attributes. - void removeAttribute(unsigned i, Attribute attr); + void removeAttributes(unsigned i, AttributeSet attr); /// @brief Extract the alignment for a call or parameter (0=unknown). unsigned getParamAlignment(unsigned i) const { |