aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen
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
commit4b09252e4b9af6f90f2bd2c1b4283c058e9b4e95 (patch)
tree1e4ada53bbe93f46cbf2e0ae0c351d2e5a24976a /lib/CodeGen
parent88b633165a20398d1015eec561856500fcf30d7d (diff)
Oops, swap this. This fixes a regression I introduced in the ARM backend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33946 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/AsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp
index 9f867a8489..0394a02aa1 100644
--- a/lib/CodeGen/AsmPrinter.cpp
+++ b/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 {