mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 00:17:01 +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:
@@ -343,10 +343,11 @@ void CallInst::removeAttribute(unsigned i, Attributes attr) {
|
||||
}
|
||||
|
||||
bool CallInst::hasFnAttr(Attributes::AttrVal A) const {
|
||||
if (AttributeList.getParamAttributes(~0U).hasAttribute(A))
|
||||
if (AttributeList.getParamAttributes(AttrListPtr::FunctionIndex)
|
||||
.hasAttribute(A))
|
||||
return true;
|
||||
if (const Function *F = getCalledFunction())
|
||||
return F->getParamAttributes(~0U).hasAttribute(A);
|
||||
return F->getParamAttributes(AttrListPtr::FunctionIndex).hasAttribute(A);
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -571,10 +572,11 @@ void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
|
||||
}
|
||||
|
||||
bool InvokeInst::hasFnAttr(Attributes::AttrVal A) const {
|
||||
if (AttributeList.getParamAttributes(~0U).hasAttribute(A))
|
||||
if (AttributeList.getParamAttributes(AttrListPtr::FunctionIndex).
|
||||
hasAttribute(A))
|
||||
return true;
|
||||
if (const Function *F = getCalledFunction())
|
||||
return F->getParamAttributes(~0U).hasAttribute(A);
|
||||
return F->getParamAttributes(AttrListPtr::FunctionIndex).hasAttribute(A);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user