aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-arm.c
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2007-04-19 17:05:12 +0000
committerPaul Brook <paul@codesourcery.com>2007-04-19 17:05:12 +0000
commit16a4cf17771801337d9306f596c58deb467c52da (patch)
treebc420383dc510529ed840c1d7063320358fa7799 /gas/config/tc-arm.c
parent964597d07bbacb56b0c64406c47e775c6c8009ea (diff)
downloadgdb-16a4cf17771801337d9306f596c58deb467c52da.zip
gdb-16a4cf17771801337d9306f596c58deb467c52da.tar.gz
gdb-16a4cf17771801337d9306f596c58deb467c52da.tar.bz2
2007-04-19 Paul Brook <paul@codesourcery.com>
gas/ * config/tc-arm.c (insns): Allow rsb and rsbs on Thumb-1.
Diffstat (limited to 'gas/config/tc-arm.c')
-rw-r--r--gas/config/tc-arm.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c
index b20803f..4e3afec0 100644
--- a/gas/config/tc-arm.c
+++ b/gas/config/tc-arm.c
@@ -14827,6 +14827,10 @@ static const struct asm_opcode insns[] =
tCE(push, 92d0000, push, 1, (REGLST), push_pop, t_push_pop),
tCE(pop, 8bd0000, pop, 1, (REGLST), push_pop, t_push_pop),
+ /* These may simplify to neg. */
+ TCE(rsb, 0600000, ebc00000, 3, (RR, oRR, SH), arit, t_rsb),
+ TC3(rsbs, 0700000, ebd00000, 3, (RR, oRR, SH), arit, t_rsb),
+
#undef THUMB_VARIANT
#define THUMB_VARIANT &arm_ext_v6
TCE(cpy, 1a00000, 4600, 2, (RR, RR), rd_rm, t_cpy),
@@ -14834,8 +14838,6 @@ static const struct asm_opcode insns[] =
/* V1 instructions with no Thumb analogue prior to V6T2. */
#undef THUMB_VARIANT
#define THUMB_VARIANT &arm_ext_v6t2
- TCE(rsb, 0600000, ebc00000, 3, (RR, oRR, SH), arit, t_rsb),
- TC3(rsbs, 0700000, ebd00000, 3, (RR, oRR, SH), arit, t_rsb),
TCE(teq, 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
TC3w(teqs, 1300000, ea900f00, 2, (RR, SH), cmp, t_mvn_tst),
CL(teqp, 130f000, 2, (RR, SH), cmp),