1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

Using a different loop induction variable than the enclosing scope. No functional changes intended.

llvm-svn: 187159
This commit is contained in:
Aaron Ballman 2013-07-25 22:09:31 +00:00
parent 32a21acb65
commit aedb990ba6

View File

@ -259,8 +259,8 @@ EmitRegUnitPressure(raw_ostream &OS, const CodeGenRegBank &RegBank,
PSets.push_back(RegBank.getRegPressureSet(*PSetI).Order);
}
std::sort(PSets.begin(), PSets.end());
for (unsigned i = 0, e = PSets.size(); i < e; ++i) {
OS << PSets[i] << ", ";
for (unsigned j = 0, e = PSets.size(); j < e; ++j) {
OS << PSets[j] << ", ";
++StartIdx;
}
OS << "-1, \t// #" << RCSetStarts[i] << " ";