diff options
author | Paul Brook <paul@codesourcery.com> | 2006-03-16 15:08:48 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2006-03-16 15:08:48 +0000 |
commit | c16d2bf06526b804c15c2c1a27d134d3cf77352e (patch) | |
tree | 5f6cf68c38fe994926b560b9338c25d4c1446abe /opcodes | |
parent | 66eb6687c96edd3c969bd644574c649fd0be23cd (diff) | |
download | gdb-c16d2bf06526b804c15c2c1a27d134d3cf77352e.zip gdb-c16d2bf06526b804c15c2c1a27d134d3cf77352e.tar.gz gdb-c16d2bf06526b804c15c2c1a27d134d3cf77352e.tar.bz2 |
2006-03-16 Paul Brook <paul@codesourcery.com>
gas/
* config/tc-arm.c (insns): Add "svc".
gas/testsuite/
* gas/arm/svc.d: New test.
* gas/arm/svc.s: New test.
* gas/arm/inst.d: Accept svc mnemonic.
* gas/arm/thumb.d: Ditto.
* gas/arm/wince_inst.d: Ditto.
opcodes/
* arm-dis.c (arm_opcodes): Rename swi to svc.
(thumb_opcodes): Ditto.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/arm-dis.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 863d128..135cf20 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2006-03-16 Paul Brook <paul@codesourcery.com> + + * arm-dis.c (arm_opcodes): Rename swi to svc. + (thumb_opcodes): Ditto. + 2006-03-13 DJ Delorie <dj@redhat.com> * m32c-asm.c: Regenerate. diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c index b5167e9..bc5b52c 100644 --- a/opcodes/arm-dis.c +++ b/opcodes/arm-dis.c @@ -659,7 +659,7 @@ static const struct opcode32 arm_opcodes[] = {ARM_EXT_V1, 0x08000000, 0x0e100000, "stm%c%23?id%24?ba\t%16-19r%21'!, %m%22'^"}, {ARM_EXT_V1, 0x08100000, 0x0e100000, "ldm%c%23?id%24?ba\t%16-19r%21'!, %m%22'^"}, {ARM_EXT_V1, 0x0a000000, 0x0e000000, "b%24'l%c\t%b"}, - {ARM_EXT_V1, 0x0f000000, 0x0f000000, "swi%c\t%0-23x"}, + {ARM_EXT_V1, 0x0f000000, 0x0f000000, "svc%c\t%0-23x"}, /* The rest. */ {ARM_EXT_V1, 0x00000000, 0x00000000, "undefined instruction %0-31x"}, @@ -798,7 +798,7 @@ static const struct opcode16 thumb_opcodes[] = {ARM_EXT_V4T, 0xC000, 0xF800, "stmia\t%8-10r!, %M"}, {ARM_EXT_V4T, 0xC800, 0xF800, "ldmia\t%8-10r!, %M"}, /* format 17 */ - {ARM_EXT_V4T, 0xDF00, 0xFF00, "swi\t%0-7d"}, + {ARM_EXT_V4T, 0xDF00, 0xFF00, "svc\t%0-7d"}, /* format 16 */ {ARM_EXT_V4T, 0xD000, 0xF000, "b%8-11c.n\t%0-7B"}, /* format 18 */ |