diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-01-22 00:53:12 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-01-22 00:53:12 +0000 |
commit | eb9c0ec26e18d6e93699a20e8733a8ae72eb5510 (patch) | |
tree | 4960573d75d3d0fe2af566ef329aaeca683ab5d2 /llvm/lib/IR/Attributes.cpp | |
parent | 360a4ae48ea12bf4e6ad77bc70888b3242a93add (diff) | |
download | bcm5719-llvm-eb9c0ec26e18d6e93699a20e8733a8ae72eb5510.tar.gz bcm5719-llvm-eb9c0ec26e18d6e93699a20e8733a8ae72eb5510.zip |
Add a new method that adds the AttributeSet at the given index. No functional change.
llvm-svn: 173109
Diffstat (limited to 'llvm/lib/IR/Attributes.cpp')
-rw-r--r-- | llvm/lib/IR/Attributes.cpp | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/llvm/lib/IR/Attributes.cpp b/llvm/lib/IR/Attributes.cpp index fe6366de790..420b2e8ff74 100644 --- a/llvm/lib/IR/Attributes.cpp +++ b/llvm/lib/IR/Attributes.cpp @@ -691,14 +691,9 @@ bool AttributeSet::hasAttrSomewhere(Attribute::AttrKind Attr) const { return false; } -AttributeSet AttributeSet::addRetAttributes(LLVMContext &C, - AttributeSet Attrs) const { - return addAttr(C, ReturnIndex, Attrs.getAttributes(ReturnIndex)); -} - -AttributeSet AttributeSet::addFnAttributes(LLVMContext &C, - AttributeSet Attrs) const { - return addAttr(C, FunctionIndex, Attrs.getAttributes(FunctionIndex)); +AttributeSet AttributeSet::addAttributes(LLVMContext &C, unsigned Idx, + AttributeSet Attrs) const { + return addAttr(C, Idx, Attrs.getAttributes(Idx)); } AttributeSet AttributeSet::addAttr(LLVMContext &C, unsigned Idx, |