mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-04 06:12:18 +00:00
Using a different loop induction variable than the enclosing scope. No functional changes intended.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187159 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6ebf55d811
commit
a946190351
@ -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] << " ";
|
||||
|
Loading…
x
Reference in New Issue
Block a user