diff options
author | Jan Beulich <jbeulich@novell.com> | 2005-07-06 08:31:50 +0000 |
---|---|---|
committer | Jan Beulich <jbeulich@novell.com> | 2005-07-06 08:31:50 +0000 |
commit | 5d5e6db937d3cf8a7affae6491373a02dd49e445 (patch) | |
tree | 98d994c868c1a006a337467280b88a117cc73e32 /gas | |
parent | d125c27b97208651ca5c59c95353ab9850338fdf (diff) | |
download | gdb-5d5e6db937d3cf8a7affae6491373a02dd49e445.zip gdb-5d5e6db937d3cf8a7affae6491373a02dd49e445.tar.gz gdb-5d5e6db937d3cf8a7affae6491373a02dd49e445.tar.bz2 |
gas/
2005-07-06 Jan Beulich <jbeulich@novell.com>
* config/tc-ia64.c (nop): Use zero for L-unit pseudo-nop.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-ia64.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index c34b4e2..68874ba 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2005-07-06 Jan Beulich <jbeulich@novell.com> + + * config/tc-ia64.c (nop): Use zero for L-unit pseudo-nop. + 2005-07-05 Nick Clifton <nickc@redhat.com> * config/tc-pdp11.c (md_apply_fix): Cast first argument to diff --git a/gas/config/tc-ia64.c b/gas/config/tc-ia64.c index fe0f9a0..17b53d6 100644 --- a/gas/config/tc-ia64.c +++ b/gas/config/tc-ia64.c @@ -593,7 +593,7 @@ static const bfd_vma nop[IA64_NUM_UNITS] = 0x0008000000LL, /* M-unit nop */ 0x4000000000LL, /* B-unit nop */ 0x0008000000LL, /* F-unit nop */ - 0x0008000000LL, /* L-"unit" nop */ + 0x0000000000LL, /* L-"unit" nop immediate */ 0x0008000000LL, /* X-unit nop */ }; |