forked from OSchip/llvm-project
Remove a nasty little semi-colon someone introduced which
prevented any machine instrs from being printed! llvm-svn: 4557
This commit is contained in:
parent
540257627f
commit
a281003e5e
|
@ -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";
|
||||
|
|
Loading…
Reference in New Issue