summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2009-10-27 20:51:49 +0000
committerJohnny Chen <johnny.chen@apple.com>2009-10-27 20:51:49 +0000
commitcde65ec58157fa97b6c4f503916748cde98ef96c (patch)
treeeba3fa9adacf846f7d5e16356f3f182aea8231d7
parentcfeaa4864252ae3298ae0e9db7e36623711ba213 (diff)
downloadbcm5719-llvm-cde65ec58157fa97b6c4f503916748cde98ef96c.tar.gz
bcm5719-llvm-cde65ec58157fa97b6c4f503916748cde98ef96c.zip
Similar to r85280, do not clear the "S" bit for RSBri and RSBrs.
llvm-svn: 85299
-rw-r--r--llvm/lib/Target/ARM/ARMInstrInfo.td2
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrInfo.td b/llvm/lib/Target/ARM/ARMInstrInfo.td
index 90045ab7711..3bbf6aee481 100644
--- a/llvm/lib/Target/ARM/ARMInstrInfo.td
+++ b/llvm/lib/Target/ARM/ARMInstrInfo.td
@@ -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;
}
OpenPOWER on IntegriCloud