diff options
author | Richard Henderson <rth@redhat.com> | 2001-12-18 00:24:47 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2001-12-18 00:24:47 +0000 |
commit | 84b229ef245c6c5700d16fca9788a3613d3e6977 (patch) | |
tree | cce653f6ee2f3b88d26dcb7517c3366533448415 /gas | |
parent | c2274b2767dba3175e585bd17f9f4a93b56cdc63 (diff) | |
download | gdb-84b229ef245c6c5700d16fca9788a3613d3e6977.zip gdb-84b229ef245c6c5700d16fca9788a3613d3e6977.tar.gz gdb-84b229ef245c6c5700d16fca9788a3613d3e6977.tar.bz2 |
* config/tc-alpha.c (alpha_handle_align): Encode unop with RB as $sp.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-alpha.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index b056c70..81bf372 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2001-12-17 Richard Henderson <rth@redhat.com> + + * config/tc-alpha.c (alpha_handle_align): Encode unop with RB as $sp. + 2001-12-17 Nick Clifton <nickc@cambridge.redhat.com> * cgen.c: Add prototype for queue_fixup. diff --git a/gas/config/tc-alpha.c b/gas/config/tc-alpha.c index f73c862..b1a3471 100644 --- a/gas/config/tc-alpha.c +++ b/gas/config/tc-alpha.c @@ -5470,10 +5470,10 @@ void alpha_handle_align (fragp) fragS *fragp; { - static char const unop[4] = { 0x00, 0x00, 0xe0, 0x2f }; + static char const unop[4] = { 0x00, 0x00, 0xfe, 0x2f }; static char const nopunop[8] = { 0x1f, 0x04, 0xff, 0x47, - 0x00, 0x00, 0xe0, 0x2f + 0x00, 0x00, 0xfe, 0x2f }; int bytes, fix; |