diff options
Diffstat (limited to 'lib/VMCore/Core.cpp')
-rw-r--r-- | lib/VMCore/Core.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VMCore/Core.cpp b/lib/VMCore/Core.cpp index 6643ad6e9a..9eb7e10840 100644 --- a/lib/VMCore/Core.cpp +++ b/lib/VMCore/Core.cpp @@ -1383,7 +1383,7 @@ void LLVMAddFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA) { const AttrListPtr PAL = Func->getAttributes(); Attributes::Builder B(PA); const AttrListPtr PALnew = - PAL.addAttr(Func->getContext(), ~0U, + PAL.addAttr(Func->getContext(), AttrListPtr::FunctionIndex, Attributes::get(Func->getContext(), B)); Func->setAttributes(PALnew); } @@ -1393,7 +1393,7 @@ void LLVMRemoveFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA) { const AttrListPtr PAL = Func->getAttributes(); Attributes::Builder B(PA); const AttrListPtr PALnew = - PAL.removeAttr(Func->getContext(), ~0U, + PAL.removeAttr(Func->getContext(), AttrListPtr::FunctionIndex, Attributes::get(Func->getContext(), B)); Func->setAttributes(PALnew); } |