diff options
author | Alan Modra <amodra@gmail.com> | 2009-04-16 04:24:07 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2009-04-16 04:24:07 +0000 |
commit | 3f904b169712db815150b4d032ca2bfff79b2b4a (patch) | |
tree | b5fb6d447a4a237821b3f9ad98cd9d41adeca3a7 /binutils | |
parent | 015f3842665e1360df4a440b953e2fba4bba03d5 (diff) | |
download | ppe42-binutils-3f904b169712db815150b4d032ca2bfff79b2b4a.tar.gz ppe42-binutils-3f904b169712db815150b4d032ca2bfff79b2b4a.zip |
binutils/testsuite/
* binutils-all/localize-hidden-1.s: Use "==" instead of ".set".
* binutils-all/localize-hidden-2.s: Likewise.
gas/testsuite/
* gas/all/gas.exp: Disable assign and assign-ok tests on blackfin.
* gas/all/p2425.s: Use "==" instead of "=".
* gas/all/weakref1.s: Likewise.
* gas/macros/and.s: Likewise.
* gas/macros/test1.s: Likewise.
* gas/hppa/parse/parse.exp: Remove xfail on block1.
ld/testsuite/
* ld-libs/lib-1.s: Use "==" instead of ".set".
* ld-libs/lib-2.s: Likewise.
* ld-scripts/defined.s: Likewise.
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 6b4641eb8a..838c600deb 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 bd32cb2799..cb9f367e54 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 5305926873..443bad085f 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 |