OSDN Git Service

Oops, swap this. This fixes a regression I introduced in the ARM backend.
authorChris Lattner <sabre@nondot.org>
Tue, 6 Feb 2007 01:56:31 +0000 (01:56 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 6 Feb 2007 01:56:31 +0000 (01:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33946 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter.cpp

index 9f867a8..0394a02 100644 (file)
@@ -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 {