Remove a nasty little semi-colon someone introduced which

prevented any machine instrs from being printed!

llvm-svn: 4557
This commit is contained in:
Vikram S. Adve 2002-11-06 00:34:26 +00:00
parent 540257627f
commit a281003e5e
1 changed files with 1 additions and 1 deletions

View File

@ -443,7 +443,7 @@ SparcFunctionAsmPrinter::emitMachineInst(const MachineInstr *MI)
{
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";