mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-19 13:38:56 +00:00
Remove a nasty little semi-colon someone introduced which
prevented any machine instrs from being printed! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4557 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d00eaaa5bc
commit
c227a9a513
@ -443,7 +443,7 @@ SparcFunctionAsmPrinter::emitMachineInst(const MachineInstr *MI)
|
|||||||
{
|
{
|
||||||
unsigned Opcode = MI->getOpCode();
|
unsigned Opcode = MI->getOpCode();
|
||||||
|
|
||||||
if (Target.getInstrInfo().isDummyPhiInstr(Opcode));
|
if (Target.getInstrInfo().isDummyPhiInstr(Opcode))
|
||||||
return; // IGNORE PHI NODES
|
return; // IGNORE PHI NODES
|
||||||
|
|
||||||
toAsm << "\t" << Target.getInstrInfo().getName(Opcode) << "\t";
|
toAsm << "\t" << Target.getInstrInfo().getName(Opcode) << "\t";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user