diff options
author | Paul Brook <paul@codesourcery.com> | 2006-03-21 14:35:27 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2006-03-21 14:35:27 +0000 |
commit | 3e94bf1a01d6aebb1c4c9468c79c05cdbc5f7b38 (patch) | |
tree | 4aa723f82f9ff5e61db0c7a9f7a3116e7ae4040d /gas/config/tc-arm.c | |
parent | eb43171d33c18429f1433c8b982e135cba87102e (diff) | |
download | gdb-3e94bf1a01d6aebb1c4c9468c79c05cdbc5f7b38.zip gdb-3e94bf1a01d6aebb1c4c9468c79c05cdbc5f7b38.tar.gz gdb-3e94bf1a01d6aebb1c4c9468c79c05cdbc5f7b38.tar.bz2 |
2006-03-21 Paul Brook <paul@codesourcery.com>
gas/
* config/tc-arm.c (insns): Correct opcodes for ldrbt and strbt.
gas/testsuite/
* gas/arm/thumb32.d: Correct expected output.
Diffstat (limited to 'gas/config/tc-arm.c')
-rw-r--r-- | gas/config/tc-arm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 583acf2..876eb5d 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -9034,9 +9034,9 @@ static const struct asm_opcode insns[] = CL(teqp, 130f000, 2, (RR, SH), cmp), TC3(ldrt, 4300000, f8500e00, 2, (RR, ADDR), ldstt, t_ldstt), - TC3(ldrbt, 4700000, f8300e00, 2, (RR, ADDR), ldstt, t_ldstt), + TC3(ldrbt, 4700000, f8100e00, 2, (RR, ADDR), ldstt, t_ldstt), TC3(strt, 4200000, f8400e00, 2, (RR, ADDR), ldstt, t_ldstt), - TC3(strbt, 4600000, f8200e00, 2, (RR, ADDR), ldstt, t_ldstt), + TC3(strbt, 4600000, f8000e00, 2, (RR, ADDR), ldstt, t_ldstt), TC3(stmdb, 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm), TC3(stmfd, 9000000, e9000000, 2, (RRw, REGLST), ldmstm, t_ldmstm), |