Revert 124230. It was causing test failures.

llvm-svn: 124233
This commit is contained in:
Bill Wendling 2011-01-25 21:48:36 +00:00
parent 1ea20bf6ed
commit 57990c4910
1 changed files with 2 additions and 4 deletions

View File

@ -673,14 +673,12 @@ void ARMInstPrinter::printT2AddrModeSoRegOperand(const MCInst *MI,
void ARMInstPrinter::printVFPf32ImmOperand(const MCInst *MI, unsigned OpNum,
raw_ostream &O) {
const MCOperand &MO = MI->getOperand(OpNum);
O << '#' << APInt(64, MO.getImm(), true).bitsToDouble();
O << '#' << (float)MI->getOperand(OpNum).getFPImm();
}
void ARMInstPrinter::printVFPf64ImmOperand(const MCInst *MI, unsigned OpNum,
raw_ostream &O) {
const MCOperand &MO = MI->getOperand(OpNum);
O << '#' << APInt(64, MO.getImm(), true).bitsToDouble();
O << '#' << MI->getOperand(OpNum).getFPImm();
}
void ARMInstPrinter::printNEONModImmOperand(const MCInst *MI, unsigned OpNum,