Handle debug info for i128 constants.

llvm-svn: 133821
This commit is contained in:
Devang Patel
2011-06-24 20:46:11 +00:00
parent e862d59eee
commit f071d72c44
13 changed files with 166 additions and 63 deletions

View File

@@ -267,6 +267,9 @@ void MachineOperand::print(raw_ostream &OS, const TargetMachine *TM) const {
case MachineOperand::MO_Immediate:
OS << getImm();
break;
case MachineOperand::MO_CImmediate:
getCImm()->getValue().print(OS, false);
break;
case MachineOperand::MO_FPImmediate:
if (getFPImm()->getType()->isFloatTy())
OS << getFPImm()->getValueAPF().convertToFloat();