diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Attributes.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/Attributes.h b/include/llvm/Attributes.h index 268fc5a..08cfb86 100644 --- a/include/llvm/Attributes.h +++ b/include/llvm/Attributes.h @@ -236,7 +236,6 @@ public: } Attributes operator & (const Attributes &A) const; - Attributes &operator |= (const Attributes &A); Attributes &operator &= (const Attributes &A); uint64_t Raw() const; @@ -351,7 +350,7 @@ public: /// addAttr - Add the specified attribute at the specified index to this /// attribute list. Since attribute lists are immutable, this /// returns the new list. - AttrListPtr addAttr(unsigned Idx, Attributes Attrs) const; + AttrListPtr addAttr(LLVMContext &C, unsigned Idx, Attributes Attrs) const; /// removeAttr - Remove the specified attribute at the specified index from /// this attribute list. Since attribute lists are immutable, this |