commit | 37cd7db2c8fa2817637d8b5ecafcc33a167865ed | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue Oct 20 00:46:11 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Tue Oct 20 00:46:11 2009 +0000 |
tree | 08b054873ce4a22222c979bf2c1a4ba8602aef55 | |
parent | 31c1d7b06d5f7ec47ec96d99275faee9624cffd0 [diff] [blame] |
add supprort for the 'sbit' operand, MOVi apparently has one. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84577 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp index 446287d..48f3485 100644 --- a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp +++ b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
@@ -1392,6 +1392,8 @@ // Predicate. TmpInst.addOperand(MCOperand::CreateImm(MI->getOperand(2).getImm())); TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(3).getReg())); + + TmpInst.addOperand(MCOperand::CreateReg(0)); // cc_out printMCInst(&TmpInst); O << '\n'; }