1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

one more added assert.

llvm-svn: 75088
This commit is contained in:
Chris Lattner 2009-07-09 02:43:55 +00:00
parent ee12a671e5
commit af31be8192

View File

@ -405,8 +405,10 @@ void X86ATTAsmPrinter::print_pcrel_imm(const MachineInstr *MI, unsigned OpNo) {
O << ']';
}
if (shouldPrintPLT(TM, Subtarget))
if (shouldPrintPLT(TM, Subtarget)) {
O << "@PLT";
assert(MO.getTargetFlags() == 0);
}
if (needCloseParen)
O << ')';