*** empty log message ***

llvm-svn: 4390
This commit is contained in:
Chris Lattner 2002-10-29 17:35:41 +00:00
parent 660bf10981
commit 52ce69b8e2
1 changed files with 2 additions and 2 deletions

View File

@ -440,10 +440,10 @@ SparcFunctionAsmPrinter::emitMachineInst(const MachineInstr *MI)
{
unsigned Opcode = MI->getOpCode();
if (TargetInstrDescriptors[Opcode].iclass & M_DUMMY_PHI_FLAG)
if (Target.getInstrInfo().isDummyPhiInstr(Opcode));
return; // IGNORE PHI NODES
toAsm << "\t" << TargetInstrDescriptors[Opcode].opCodeString << "\t";
toAsm << "\t" << Target.getInstrInfo().getName(Opcode) << "\t";
unsigned Mask = getOperandMask(Opcode);