diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-01-30 23:40:31 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-01-30 23:40:31 +0000 |
commit | ac72eb264c3a8a15cda81aaead6adc8419058666 (patch) | |
tree | dedfbceb55713764692caed012129a8c0874c932 /lib/IR | |
parent | e74365462a39529ae48ef4d34ec76b4543b8ea29 (diff) | |
download | external_llvm-ac72eb264c3a8a15cda81aaead6adc8419058666.zip external_llvm-ac72eb264c3a8a15cda81aaead6adc8419058666.tar.gz external_llvm-ac72eb264c3a8a15cda81aaead6adc8419058666.tar.bz2 |
Remove addRetAttributes and addFnAttributes, which aren't useful abstractions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173992 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/IR')
-rw-r--r-- | lib/IR/Core.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/IR/Core.cpp b/lib/IR/Core.cpp index 1e3258f..aaf661f 100644 --- a/lib/IR/Core.cpp +++ b/lib/IR/Core.cpp @@ -1383,9 +1383,9 @@ void LLVMAddFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA) { const AttributeSet PAL = Func->getAttributes(); AttrBuilder B(PA); const AttributeSet PALnew = - PAL.addFnAttributes(Func->getContext(), - AttributeSet::get(Func->getContext(), - AttributeSet::FunctionIndex, B)); + PAL.addAttributes(Func->getContext(), AttributeSet::FunctionIndex, + AttributeSet::get(Func->getContext(), + AttributeSet::FunctionIndex, B)); Func->setAttributes(PALnew); } |