From 3f904b169712db815150b4d032ca2bfff79b2b4a Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Thu, 16 Apr 2009 04:24:07 +0000 Subject: 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. --- binutils/testsuite/ChangeLog | 5 +++++ .../testsuite/binutils-all/localize-hidden-1.s | 24 +++++++++++----------- .../testsuite/binutils-all/localize-hidden-2.s | 2 +- 3 files changed, 18 insertions(+), 13 deletions(-) (limited to 'binutils/testsuite') 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 + + * binutils-all/localize-hidden-1.s: Use "==" instead of ".set". + * binutils-all/localize-hidden-2.s: Likewise. + 2009-04-02 Dave Korn * 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 -- cgit v1.1