[llvm-commits] CVS: llvm/lib/CodeGen/AsmPrinter.cpp
Chris Lattner
sabre at nondot.org
Mon Feb 5 17:56:57 PST 2007
Changes in directory llvm/lib/CodeGen:
AsmPrinter.cpp updated: 1.145 -> 1.146
---
Log message:
Oops, swap this. This fixes a regression I introduced in the ARM backend.
---
Diffs of the changes: (+1 -1)
AsmPrinter.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/CodeGen/AsmPrinter.cpp
diff -u llvm/lib/CodeGen/AsmPrinter.cpp:1.145 llvm/lib/CodeGen/AsmPrinter.cpp:1.146
--- llvm/lib/CodeGen/AsmPrinter.cpp:1.145 Mon Feb 5 15:23:52 2007
+++ llvm/lib/CodeGen/AsmPrinter.cpp Mon Feb 5 19:56:31 2007
@@ -850,7 +850,7 @@
if (LastMI != MI || F != ThisF) {
++Counter;
LastMI = MI;
- ThisF = F;
+ F = ThisF;
}
O << Counter;
} else {
More information about the llvm-commits
mailing list