mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-26 05:25:47 +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:
@@ -2771,9 +2771,10 @@ bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
|
||||
SmallVector<AttributeWithIndex, 8> Attrs;
|
||||
|
||||
if (RetAttrs.hasAttributes())
|
||||
Attrs.push_back(AttributeWithIndex::get(0,
|
||||
Attributes::get(RetType->getContext(),
|
||||
RetAttrs)));
|
||||
Attrs.push_back(
|
||||
AttributeWithIndex::get(AttrListPtr::ReturnIndex,
|
||||
Attributes::get(RetType->getContext(),
|
||||
RetAttrs)));
|
||||
|
||||
for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
|
||||
ParamTypeList.push_back(ArgList[i].Ty);
|
||||
@@ -2782,9 +2783,10 @@ bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
|
||||
}
|
||||
|
||||
if (FuncAttrs.hasAttributes())
|
||||
Attrs.push_back(AttributeWithIndex::get(~0,
|
||||
Attributes::get(RetType->getContext(),
|
||||
FuncAttrs)));
|
||||
Attrs.push_back(
|
||||
AttributeWithIndex::get(AttrListPtr::FunctionIndex,
|
||||
Attributes::get(RetType->getContext(),
|
||||
FuncAttrs)));
|
||||
|
||||
AttrListPtr PAL = AttrListPtr::get(Attrs);
|
||||
|
||||
@@ -3306,9 +3308,10 @@ bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
|
||||
// Set up the Attributes for the function.
|
||||
SmallVector<AttributeWithIndex, 8> Attrs;
|
||||
if (RetAttrs.hasAttributes())
|
||||
Attrs.push_back(AttributeWithIndex::get(0,
|
||||
Attributes::get(Callee->getContext(),
|
||||
RetAttrs)));
|
||||
Attrs.push_back(
|
||||
AttributeWithIndex::get(AttrListPtr::ReturnIndex,
|
||||
Attributes::get(Callee->getContext(),
|
||||
RetAttrs)));
|
||||
|
||||
SmallVector<Value*, 8> Args;
|
||||
|
||||
@@ -3336,9 +3339,10 @@ bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
|
||||
return Error(CallLoc, "not enough parameters specified for call");
|
||||
|
||||
if (FnAttrs.hasAttributes())
|
||||
Attrs.push_back(AttributeWithIndex::get(~0,
|
||||
Attributes::get(Callee->getContext(),
|
||||
FnAttrs)));
|
||||
Attrs.push_back(
|
||||
AttributeWithIndex::get(AttrListPtr::FunctionIndex,
|
||||
Attributes::get(Callee->getContext(),
|
||||
FnAttrs)));
|
||||
|
||||
// Finish off the Attributes and check them
|
||||
AttrListPtr PAL = AttrListPtr::get(Attrs);
|
||||
@@ -3706,9 +3710,10 @@ bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
|
||||
// Set up the Attributes for the function.
|
||||
SmallVector<AttributeWithIndex, 8> Attrs;
|
||||
if (RetAttrs.hasAttributes())
|
||||
Attrs.push_back(AttributeWithIndex::get(0,
|
||||
Attributes::get(Callee->getContext(),
|
||||
RetAttrs)));
|
||||
Attrs.push_back(
|
||||
AttributeWithIndex::get(AttrListPtr::ReturnIndex,
|
||||
Attributes::get(Callee->getContext(),
|
||||
RetAttrs)));
|
||||
|
||||
SmallVector<Value*, 8> Args;
|
||||
|
||||
@@ -3736,9 +3741,10 @@ bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
|
||||
return Error(CallLoc, "not enough parameters specified for call");
|
||||
|
||||
if (FnAttrs.hasAttributes())
|
||||
Attrs.push_back(AttributeWithIndex::get(~0,
|
||||
Attributes::get(Callee->getContext(),
|
||||
FnAttrs)));
|
||||
Attrs.push_back(
|
||||
AttributeWithIndex::get(AttrListPtr::FunctionIndex,
|
||||
Attributes::get(Callee->getContext(),
|
||||
FnAttrs)));
|
||||
|
||||
// Finish off the Attributes and check them
|
||||
AttrListPtr PAL = AttrListPtr::get(Attrs);
|
||||
|
Reference in New Issue
Block a user