diff options
author | Jeff Law <law@redhat.com> | 1996-11-20 18:31:12 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-11-20 18:31:12 +0000 |
commit | b47b320db36cef20c4eaa9c96a4dbc47f89469b0 (patch) | |
tree | 520dd1265ef1cf361288e7c8730cae903cd3eb91 /gas/testsuite | |
parent | aa9c04cd558a15bc4363862a2b97493316ba698c (diff) | |
download | gdb-b47b320db36cef20c4eaa9c96a4dbc47f89469b0.zip gdb-b47b320db36cef20c4eaa9c96a4dbc47f89469b0.tar.gz gdb-b47b320db36cef20c4eaa9c96a4dbc47f89469b0.tar.bz2 |
* gas/mn10300/other.s: Update for correct syntax on a
few instructions (those with register lists).
* gas/mn10300/basic.exp: Corresponding changes.
Stuff noticed while working on the disassembler.
Diffstat (limited to 'gas/testsuite')
-rw-r--r-- | gas/testsuite/ChangeLog | 6 | ||||
-rwxr-xr-x | gas/testsuite/gas/mn10300/other.s | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 12ee001..e21fe83 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,9 @@ +Wed Nov 20 11:31:41 1996 Jeffrey A Law (law@cygnus.com) + + * gas/mn10300/other.s: Update for correct syntax on a + few instructions (those with register lists). + * gas/mn10300/basic.exp: Corresponding changes. + Tue Nov 19 13:36:57 1996 Jeffrey A Law (law@cygnus.com) * gas/mn10300/movm.s: Update for correct syntax. diff --git a/gas/testsuite/gas/mn10300/other.s b/gas/testsuite/gas/mn10300/other.s index 68ceafe..3eaf74a 100755 --- a/gas/testsuite/gas/mn10300/other.s +++ b/gas/testsuite/gas/mn10300/other.s @@ -6,13 +6,13 @@ jmp (a2) jmp 256 jmp 131071 - call 256,5,9 - call 131071,9,32 + call 256,[a2,a3],9 + call 131071,[a2,a3],32 calls (a2) calls 256 calls 131071 - ret 15,7 - retf 9,5 + ret [a2,a3],7 + retf [a2,a3],5 rets rti trap |