Similar to r85280, do not clear the "S" bit for RSBri and RSBrs.
authorJohnny Chen <johnny.chen@apple.com>
Tue, 27 Oct 2009 20:51:49 +0000 (20:51 +0000)
committerJohnny Chen <johnny.chen@apple.com>
Tue, 27 Oct 2009 20:51:49 +0000 (20:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85299 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMInstrInfo.td

index 90045ab77111ab6e64b5466e2f9fc7f2038824cb..3bbf6aee481e8e7104684cd3f6321be90675e5c2 100644 (file)
@@ -1099,7 +1099,6 @@ defm SBC : AI1_adde_sube_irs<0b0110, "sbc",
 def RSBri : AsI1<0b0011, (outs GPR:$dst), (ins GPR:$a, so_imm:$b), DPFrm,
                   IIC_iALUi, "rsb", "\t$dst, $a, $b",
                   [(set GPR:$dst, (sub so_imm:$b, GPR:$a))]> {
-    let Inst{20} = 0;
     let Inst{25} = 1;
 }
 
@@ -1108,7 +1107,6 @@ def RSBrs : AsI1<0b0011, (outs GPR:$dst), (ins GPR:$a, so_reg:$b), DPSoRegFrm,
                   [(set GPR:$dst, (sub so_reg:$b, GPR:$a))]> {
     let Inst{4} = 1;
     let Inst{7} = 0;
-    let Inst{20} = 0;
     let Inst{25} = 0;
 }