Remove a nasty little semi-colon someone introduced which
prevented any machine instrs from being printed!
llvm-svn: 4557
diff --git a/llvm/lib/Target/Sparc/EmitAssembly.cpp b/llvm/lib/Target/Sparc/EmitAssembly.cpp
index 0357c59..80e0f64 100644
--- a/llvm/lib/Target/Sparc/EmitAssembly.cpp
+++ b/llvm/lib/Target/Sparc/EmitAssembly.cpp
@@ -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";