mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +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:
@@ -606,8 +606,8 @@ EmitAttributes(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) {
|
||||
OS << " AttrVec.push_back(Attributes::ReadNone);\n";
|
||||
break;
|
||||
}
|
||||
OS << " AWI[" << numAttrs++ << "] = AttributeWithIndex::get(C, ~0, "
|
||||
<< "AttrVec);\n";
|
||||
OS << " AWI[" << numAttrs++ << "] = AttributeWithIndex::get(C, "
|
||||
<< "AttrListPtr::FunctionIndex, AttrVec);\n";
|
||||
}
|
||||
|
||||
if (numAttrs) {
|
||||
|
Reference in New Issue
Block a user