aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2001-12-04 00:10:40 +0000
committerAlan Modra <amodra@gmail.com>2001-12-04 00:10:40 +0000
commit7cecdbff280a097a40e005260d6d77cedbafcaa0 (patch)
tree3e01a1c0903116a40040ad5315d369fe9204ce61 /ld
parentf599053f37b2c408643d101190d7af1d91389657 (diff)
downloadfsf-binutils-gdb-7cecdbff280a097a40e005260d6d77cedbafcaa0.zip
fsf-binutils-gdb-7cecdbff280a097a40e005260d6d77cedbafcaa0.tar.gz
fsf-binutils-gdb-7cecdbff280a097a40e005260d6d77cedbafcaa0.tar.bz2
* ldexp.c (exp_print_token): Correct "table" entry for RSHIFT.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog18
-rw-r--r--ld/ldexp.c2
2 files changed, 12 insertions, 8 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index c123de2..d39c512 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,16 +1,20 @@
+2001-12-04 Alan Modra <amodra@bigpond.net.au>
+
+ * ldexp.c (exp_print_token): Correct "table" entry for RSHIFT.
+
2001-12-02 Tom Rix <trix@redhat.com>
-
+
* configure.tgt : Remove eaixppc64 emulations.
- * Makefile.in : Remove eaixppc64.c
+ * Makefile.in : Remove eaixppc64.c
* ldemul.c (ldemul_choose_target): New parameters argc, argv.
(ldemul_default_target): Same.
* emultempl/gld960.em (gld960_choose_target): Same.
- * emultempl/gld960c.em (gld960_choose_target): Same.
- * scripttempl/aix.sc: Remove OUTPUT_FORMAT.
+ * emultempl/gld960c.em (gld960_choose_target): Same.
+ * scripttempl/aix.sc: Remove OUTPUT_FORMAT.
* emultempl/aix.em (is_syscall): syscall_mask now a variable.
* emultempl/aix.em (gld*_read_file): symbol_mode_mask now a variable.
* emultempl/aix.em (gld*_parse_args): Handle -b32 -b64 emulation.
- * emultempl/aix.em (choose_target): New function. Handle emulation of
+ * emultempl/aix.em (choose_target): New function. Handle emulation of
-b32 and -b64.
2001-11-27 H.J. Lu <hjl@gnu.org>
@@ -24,7 +28,7 @@
* emulparams/elf32_sparc.sh (NO_SMALL_DATA): Likewise.
* emulparams/elf64_sparc.sh (NO_SMALL_DATA): Likewise.
- * scripttempl/elf.sc (SBSS): New. Define if ${NO_SMALL_DATA}
+ * scripttempl/elf.sc (SBSS): New. Define if ${NO_SMALL_DATA}
is not empty.
(SDATA): Likewise.
(REL_SDATA): Likewise.
@@ -38,7 +42,7 @@
* scripttempl/elfm68hc11.sc (CTOR, DTOR): Put constructor and
destructor in rom.
- * scripttempl/elfm68hc12.sc (CTOR, DTOR): Likewise.
+ * scripttempl/elfm68hc12.sc (CTOR, DTOR): Likewise.
2001-11-22 H.J. Lu <hjl@gnu.org>
diff --git a/ld/ldexp.c b/ld/ldexp.c
index ca5d01a..ec449fd 100644
--- a/ld/ldexp.c
+++ b/ld/ldexp.c
@@ -92,7 +92,7 @@ exp_print_token (code)
{ LE, "<=" },
{ GE, ">=" },
{ LSHIFT, "<<" },
- { RSHIFT, ">>=" },
+ { RSHIFT, ">>" },
{ ALIGN_K, "ALIGN" },
{ BLOCK, "BLOCK" },
{ QUAD, "QUAD" },