mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-02 07:17:36 +00:00
s/AttrBuilder::addAttributes/AttrBuilder::addAttribute/g because that's more descriptive of what it actually is.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174116 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user