mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-22 23:24:59 +00:00
[TableGen] Use range-based for loops. NFC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238808 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -148,9 +148,8 @@ bool TGParser::SetValue(Record *CurRec, SMLoc Loc, Init *ValName,
|
||||
bool TGParser::AddSubClass(Record *CurRec, SubClassReference &SubClass) {
|
||||
Record *SC = SubClass.Rec;
|
||||
// Add all of the values in the subclass into the current class.
|
||||
const std::vector<RecordVal> &Vals = SC->getValues();
|
||||
for (unsigned i = 0, e = Vals.size(); i != e; ++i)
|
||||
if (AddValue(CurRec, SubClass.RefRange.Start, Vals[i]))
|
||||
for (const RecordVal &Val : SC->getValues())
|
||||
if (AddValue(CurRec, SubClass.RefRange.Start, Val))
|
||||
return true;
|
||||
|
||||
const std::vector<Init *> &TArgs = SC->getTemplateArgs();
|
||||
@@ -325,9 +324,9 @@ bool TGParser::ProcessForeachDefs(Record *CurRec, SMLoc Loc, IterSet &IterVals){
|
||||
auto IterRec = make_unique<Record>(*CurRec);
|
||||
|
||||
// Set the iterator values now.
|
||||
for (unsigned i = 0, e = IterVals.size(); i != e; ++i) {
|
||||
VarInit *IterVar = IterVals[i].IterVar;
|
||||
TypedInit *IVal = dyn_cast<TypedInit>(IterVals[i].IterValue);
|
||||
for (IterRecord &IR : IterVals) {
|
||||
VarInit *IterVar = IR.IterVar;
|
||||
TypedInit *IVal = dyn_cast<TypedInit>(IR.IterValue);
|
||||
if (!IVal)
|
||||
return Error(Loc, "foreach iterator value is untyped");
|
||||
|
||||
@@ -1807,8 +1806,8 @@ VarInit *TGParser::ParseForeachDeclaration(ListInit *&ForeachListValue) {
|
||||
assert(!IterType && "Type already initialized?");
|
||||
IterType = IntRecTy::get();
|
||||
std::vector<Init*> Values;
|
||||
for (unsigned i = 0, e = Ranges.size(); i != e; ++i)
|
||||
Values.push_back(IntInit::get(Ranges[i]));
|
||||
for (unsigned R : Ranges)
|
||||
Values.push_back(IntInit::get(R));
|
||||
ForeachListValue = ListInit::get(Values, IterType);
|
||||
}
|
||||
|
||||
@@ -1934,10 +1933,9 @@ bool TGParser::ParseBody(Record *CurRec) {
|
||||
/// \brief Apply the current let bindings to \a CurRec.
|
||||
/// \returns true on error, false otherwise.
|
||||
bool TGParser::ApplyLetStack(Record *CurRec) {
|
||||
for (unsigned i = 0, e = LetStack.size(); i != e; ++i)
|
||||
for (unsigned j = 0, e = LetStack[i].size(); j != e; ++j)
|
||||
if (SetValue(CurRec, LetStack[i][j].Loc, LetStack[i][j].Name,
|
||||
LetStack[i][j].Bits, LetStack[i][j].Value))
|
||||
for (std::vector<LetRecord> &LetInfo : LetStack)
|
||||
for (LetRecord &LR : LetInfo)
|
||||
if (SetValue(CurRec, LR.Loc, LR.Name, LR.Bits, LR.Value))
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user