diff options
author | Dave Brolley <brolley@redhat.com> | 1998-11-18 16:29:08 +0000 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 1998-11-18 16:29:08 +0000 |
commit | a20d433120fe3707f62464349b0c7d8943487966 (patch) | |
tree | 169b046ba93c32a9c93f4308d0639af88acee7dd /gas | |
parent | 468bc0c5fe3798fe3a63a5aababe3c95ac8616d0 (diff) | |
download | gdb-a20d433120fe3707f62464349b0c7d8943487966.zip gdb-a20d433120fe3707f62464349b0c7d8943487966.tar.gz gdb-a20d433120fe3707f62464349b0c7d8943487966.tar.bz2 |
Wed Nov 18 11:27:56 1998 Dave Brolley <brolley@cygnus.com>
* gas/fr30/allinsn.s (dmov): Correct hex literals.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gas/testsuite/gas/fr30/allinsn.s | 14 |
2 files changed, 11 insertions, 7 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index ed74589..75b8c2b 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,7 @@ +Wed Nov 18 11:27:56 1998 Dave Brolley <brolley@cygnus.com> + + * gas/fr30/allinsn.s (dmov): Correct hex literals. + Tue Nov 17 15:24:20 1998 Nick Clifton <nickc@cygnus.com> * gas/fr30/allinsn.s: Moved currently un-assembliable instructions diff --git a/gas/testsuite/gas/fr30/allinsn.s b/gas/testsuite/gas/fr30/allinsn.s index 0990803..47889a7 100644 --- a/gas/testsuite/gas/fr30/allinsn.s +++ b/gas/testsuite/gas/fr30/allinsn.s @@ -381,21 +381,21 @@ call_d: nop .global dmov dmov: - dmov @88H, r13 - dmov r13, @54H + dmov @0x88, r13 + dmov r13, @0x54 dmov @0x44, @r13+ dmov @R13+, @0x2 - dmov @2cH, @-r15 - dmov @r15+, @#38 + dmov @0x2c, @-r15 + dmov @r15+, @38 .global dmovh dmovh: - dmovh @88H, r13 - dmovh r13, @52h + dmovh @0x88, r13 + dmovh r13, @0x52 dmovh @0x34, @r13 + dmovh @r13+, @0x52 .global dmovb dmovb: - dmovb @91H, r13 + dmovb @0x91, r13 dmovb r13, @0x53 dmovb @71, @r13+ dmovb @r13+, @0x0 |