mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-02 07:17:36 +00:00
Add an enum for the return and function indexes into the AttrListPtr object. This gets rid of some magic numbers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165924 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user