[llvm-commits] CVS: llvm/lib/CodeGen/VirtRegMap.cpp
Chris Lattner
lattner at cs.uiuc.edu
Fri Jan 14 07:54:37 PST 2005
Changes in directory llvm/lib/CodeGen:
VirtRegMap.cpp updated: 1.33 -> 1.34
---
Log message:
Improve compatibility with acc
---
Diffs of the changes: (+2 -2)
Index: llvm/lib/CodeGen/VirtRegMap.cpp
diff -u llvm/lib/CodeGen/VirtRegMap.cpp:1.33 llvm/lib/CodeGen/VirtRegMap.cpp:1.34
--- llvm/lib/CodeGen/VirtRegMap.cpp:1.33 Tue Oct 26 10:35:33 2004
+++ llvm/lib/CodeGen/VirtRegMap.cpp Fri Jan 14 09:54:24 2005
@@ -438,8 +438,8 @@
// If we have folded references to memory operands, make sure we clear all
// physical registers that may contain the value of the spilled virtual
// register
- VirtRegMap::MI2VirtMapTy::const_iterator I, E;
- for (tie(I, E) = VRM.getFoldedVirts(&MI); I != E; ++I) {
+ VirtRegMap::MI2VirtMapTy::const_iterator I, End;
+ for (tie(I, End) = VRM.getFoldedVirts(&MI); I != End; ++I) {
DEBUG(std::cerr << "Folded vreg: " << I->second.first << " MR: "
<< I->second.second);
unsigned VirtReg = I->second.first;
More information about the llvm-commits
mailing list