diff options
Diffstat (limited to 'include/llvm/IR/Attributes.h')
-rw-r--r-- | include/llvm/IR/Attributes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/IR/Attributes.h b/include/llvm/IR/Attributes.h index d5da1c0a2e..508277c130 100644 --- a/include/llvm/IR/Attributes.h +++ b/include/llvm/IR/Attributes.h @@ -345,7 +345,7 @@ public: addRawValue(B); } AttrBuilder(const Attribute &A) : Alignment(0), StackAlignment(0) { - addAttributes(A); + addAttribute(A); } AttrBuilder(AttributeSet AS, unsigned Idx); @@ -354,12 +354,12 @@ public: /// \brief Add an attribute to the builder. AttrBuilder &addAttribute(Attribute::AttrKind Val); + /// \brief Add the Attribute object to the builder. + AttrBuilder &addAttribute(Attribute A); + /// \brief Remove an attribute from the builder. AttrBuilder &removeAttribute(Attribute::AttrKind Val); - /// \brief Add the attributes to the builder. - AttrBuilder &addAttributes(Attribute A); - /// \brief Remove the attributes from the builder. AttrBuilder &removeAttributes(AttributeSet A, uint64_t Index); |