1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Fix printing: je => jeq

llvm-svn: 70760
This commit is contained in:
Anton Korobeynikov 2009-05-03 13:16:54 +00:00
parent 4b5232c990
commit f4b4812c83

View File

@ -200,7 +200,7 @@ void MSP430AsmPrinter::printCCOperand(const MachineInstr *MI, int OpNum) {
assert(0 && "Unsupported CC code");
break;
case MSP430::COND_E:
O << 'e';
O << "eq";
break;
case MSP430::COND_NE:
O << "ne";