diff options
| author | Chris Lattner <sabre@nondot.org> | 2007-02-06 01:56:31 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2007-02-06 01:56:31 +0000 |
| commit | 89e66e0c26ed96c4139183c3847c316e483f4a50 (patch) | |
| tree | f34a55df205fa1a11a7741dd65b203efcf2ac349 /llvm/lib/CodeGen/AsmPrinter.cpp | |
| parent | 2fc792f86bd43f362aa14b09535427a98cee53a2 (diff) | |
| download | bcm5719-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.cpp | 2 |
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 { |

