summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-02-06 01:56:31 +0000
committerChris Lattner <sabre@nondot.org>2007-02-06 01:56:31 +0000
commit89e66e0c26ed96c4139183c3847c316e483f4a50 (patch)
treef34a55df205fa1a11a7741dd65b203efcf2ac349 /llvm/lib/CodeGen/AsmPrinter.cpp
parent2fc792f86bd43f362aa14b09535427a98cee53a2 (diff)
downloadbcm5719-llvm-89e66e0c26ed96c4139183c3847c316e483f4a50.tar.gz
bcm5719-llvm-89e66e0c26ed96c4139183c3847c316e483f4a50.zip
Oops, swap this. This fixes a regression I introduced in the ARM backend.
llvm-svn: 33946
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter.cpp')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter.cpp
index 9f867a8489a..0394a02aa16 100644
--- a/llvm/lib/CodeGen/AsmPrinter.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter.cpp
@@ -850,7 +850,7 @@ void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) {
if (LastMI != MI || F != ThisF) {
++Counter;
LastMI = MI;
- ThisF = F;
+ F = ThisF;
}
O << Counter;
} else {
OpenPOWER on IntegriCloud