diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2005-04-26 17:15:22 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2005-04-26 17:15:22 +0000 |
commit | 60938e80e69ba5182cdd924b757d783c43637104 (patch) | |
tree | ba3f7708e0e6f956a044780c6c155cc959bf945d /gas/testsuite | |
parent | 6156ef10ad0d05611bb9f6d05d79ab0e02ddc8ad (diff) | |
download | gdb-60938e80e69ba5182cdd924b757d783c43637104.zip gdb-60938e80e69ba5182cdd924b757d783c43637104.tar.gz gdb-60938e80e69ba5182cdd924b757d783c43637104.tar.bz2 |
gas/
2005-04-26 H.J. Lu <hongjiu.lu@intel.com>
* config/obj-multi.h (FAKE_LABEL_NAME): Defined.
* read.c (pseudo_set): Disallow symbol set to common symbol.
PR 857
* write.c (write_object_file): Report common symbol name when
disallowing local symbol set to common symbol.
(adjust_reloc_syms): Disallow local symbol set to undefined
symbol.
gas/testsuite/
2005-04-26 H.J. Lu <hongjiu.lu@intel.com>
* gas/all/assign.s: Make `x' and `y' global.
Diffstat (limited to 'gas/testsuite')
-rw-r--r-- | gas/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gas/testsuite/gas/all/assign.s | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 887cd03..2504e0c 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2005-04-26 H.J. Lu <hongjiu.lu@intel.com> + + * gas/all/assign.s: Make `x' and `y' global. + 2005-04-25 Jan Beulich <jbeulich@novell.com> * gas/macros/badarg.s: Add tests for collisions between/among macro diff --git a/gas/testsuite/gas/all/assign.s b/gas/testsuite/gas/all/assign.s index 1a41406..5f94392 100644 --- a/gas/testsuite/gas/all/assign.s +++ b/gas/testsuite/gas/all/assign.s @@ -1,7 +1,9 @@ + .global x x = zzz x = x+1 .long x + .global y y = 1 y = y+zzz .long y |