diff options
author | Ian Lance Taylor <ian@airs.com> | 1992-09-22 15:32:03 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1992-09-22 15:32:03 +0000 |
commit | 065b6303d07e02a08792afd3d4066919ae9ea29a (patch) | |
tree | 2e2410d1da011e7a233c441d0fcdf9fa3aade5e2 /gas | |
parent | ebeccdf0b8be6670a0de68318fcb838c638c1e58 (diff) | |
download | gdb-065b6303d07e02a08792afd3d4066919ae9ea29a.zip gdb-065b6303d07e02a08792afd3d4066919ae9ea29a.tar.gz gdb-065b6303d07e02a08792afd3d4066919ae9ea29a.tar.bz2 |
Roll bask the WRS change, since it had already been applied, and the
reversed patch they sent blew my mind.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/config/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-m68k.c | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/gas/config/ChangeLog b/gas/config/ChangeLog index 3a1b865..287ce08 100644 --- a/gas/config/ChangeLog +++ b/gas/config/ChangeLog @@ -1,7 +1,3 @@ -Mon Sep 21 14:44:17 1992 Ian Lance Taylor (ian@cygnus.com) - - * tc-m68k.c (m68k_ip): fixed move16 operand handling, from WRS. - Fri Sep 18 08:02:18 1992 Steve Chamberlain (sac@thepub.cygnus.com) * tc-m68k.c (m68k_ip): An(disp) is not pc relative. diff --git a/gas/config/tc-m68k.c b/gas/config/tc-m68k.c index e05d439..0cfc1a0 100644 --- a/gas/config/tc-m68k.c +++ b/gas/config/tc-m68k.c @@ -2648,7 +2648,8 @@ void m68k_ip (instring) break; case '_': /* used only for move16 absolute 32-bit address */ tmpreg=get_num(opP->con1,80); - install_operand(s[1], tmpreg); + addword (tmpreg >> 16); + addword (tmpreg & 0xFFFF); break; default: as_fatal("Internal error: Operand type %c unknown in line %d of file \"%s\"", |