diff options
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 |