From 4b09252e4b9af6f90f2bd2c1b4283c058e9b4e95 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 6 Feb 2007 01:56:31 +0000 Subject: [PATCH] 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 --- lib/CodeGen/AsmPrinter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp index 9f867a8489a..0394a02aa16 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 {