From fd56ee2c40966117c96321f374a7861906b7f04a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 15 Nov 2010 03:51:13 +0000 Subject: fix some fixme's, removing dead code. llvm-svn: 119114 --- llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp') diff --git a/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp b/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp index 1cd3f00f203..941adfbf0d9 100644 --- a/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp +++ b/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp @@ -188,10 +188,7 @@ void PPCInstPrinter::printMemRegImm(const MCInst *MI, unsigned OpNo, raw_ostream &O) { printSymbolLo(MI, OpNo, O); O << '('; - assert(MI->getOperand(OpNo+1).isReg() && "Bad operand"); - // FIXME: Simplify. - if (MI->getOperand(OpNo+1).isReg() && - MI->getOperand(OpNo+1).getReg() == PPC::R0) + if (MI->getOperand(OpNo+1).getReg() == PPC::R0) O << "0"; else printOperand(MI, OpNo+1, O); @@ -206,10 +203,7 @@ void PPCInstPrinter::printMemRegImmShifted(const MCInst *MI, unsigned OpNo, printSymbolLo(MI, OpNo, O); O << '('; - assert(MI->getOperand(OpNo+1).isReg() && "Bad operand"); - // FIXME: Simplify. - if (MI->getOperand(OpNo+1).isReg() && - MI->getOperand(OpNo+1).getReg() == PPC::R0) + if (MI->getOperand(OpNo+1).getReg() == PPC::R0) O << "0"; else printOperand(MI, OpNo+1, O); -- cgit v1.2.3