[llvm-commits] CVS: llvm/lib/Target/Sparc/EmitAssembly.cpp
Vikram Adve
vadve at cs.uiuc.edu
Tue Nov 5 18:35:01 PST 2002
Changes in directory llvm/lib/Target/Sparc:
EmitAssembly.cpp updated: 1.70 -> 1.71
---
Log message:
Remove a nasty little semi-colon someone introduced which
prevented any machine instrs from being printed!
---
Diffs of the changes:
Index: llvm/lib/Target/Sparc/EmitAssembly.cpp
diff -u llvm/lib/Target/Sparc/EmitAssembly.cpp:1.70 llvm/lib/Target/Sparc/EmitAssembly.cpp:1.71
--- llvm/lib/Target/Sparc/EmitAssembly.cpp:1.70 Wed Oct 30 14:16:38 2002
+++ llvm/lib/Target/Sparc/EmitAssembly.cpp Tue Nov 5 18:34:26 2002
@@ -443,7 +443,7 @@
{
unsigned Opcode = MI->getOpCode();
- if (Target.getInstrInfo().isDummyPhiInstr(Opcode));
+ if (Target.getInstrInfo().isDummyPhiInstr(Opcode))
return; // IGNORE PHI NODES
toAsm << "\t" << Target.getInstrInfo().getName(Opcode) << "\t";
More information about the llvm-commits
mailing list