diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/localize-hidden-1.s | 24 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/localize-hidden-2.s | 2 |
3 files changed, 18 insertions, 13 deletions
diff --git a/binutils/testsuite/ChangeLog b/binutils/testsuite/ChangeLog index 6b4641e..838c600 100644 --- a/binutils/testsuite/ChangeLog +++ b/binutils/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2009-04-16 Alan Modra <amodra@bigpond.net.au> + + * binutils-all/localize-hidden-1.s: Use "==" instead of ".set". + * binutils-all/localize-hidden-2.s: Likewise. + 2009-04-02 Dave Korn <dave.korn.cygwin@gmail.com> * inutils-all/objcopy.exp (strip_executable): Delete remote dest diff --git a/binutils/testsuite/binutils-all/localize-hidden-1.s b/binutils/testsuite/binutils-all/localize-hidden-1.s index bd32cb2..cb9f367 100644 --- a/binutils/testsuite/binutils-all/localize-hidden-1.s +++ b/binutils/testsuite/binutils-all/localize-hidden-1.s @@ -20,17 +20,17 @@ .protected Gprotected .protected Wprotected - .set Ldefault, 0x1100 - .set Lhidden, 0x1200 - .set Linternal, 0x1300 - .set Lprotected, 0x1400 + Ldefault == 0x1100 + Lhidden == 0x1200 + Linternal == 0x1300 + Lprotected == 0x1400 - .set Gdefault, 0x2100 - .set Ghidden, 0x2200 - .set Ginternal, 0x2300 - .set Gprotected, 0x2400 + Gdefault == 0x2100 + Ghidden == 0x2200 + Ginternal == 0x2300 + Gprotected == 0x2400 - .set Wdefault, 0x3100 - .set Whidden, 0x3200 - .set Winternal, 0x3300 - .set Wprotected, 0x3400 + Wdefault == 0x3100 + Whidden == 0x3200 + Winternal == 0x3300 + Wprotected == 0x3400 diff --git a/binutils/testsuite/binutils-all/localize-hidden-2.s b/binutils/testsuite/binutils-all/localize-hidden-2.s index 5305926..443bad0 100644 --- a/binutils/testsuite/binutils-all/localize-hidden-2.s +++ b/binutils/testsuite/binutils-all/localize-hidden-2.s @@ -1,2 +1,2 @@ .globl G - .set G,0x100 + G == 0x100 |