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 /ld | |
parent | 015f3842665e1360df4a440b953e2fba4bba03d5 (diff) | |
download | binutils-3f904b169712db815150b4d032ca2bfff79b2b4a.zip binutils-3f904b169712db815150b4d032ca2bfff79b2b4a.tar.gz binutils-3f904b169712db815150b4d032ca2bfff79b2b4a.tar.bz2 |
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 'ld')
-rw-r--r-- | ld/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | ld/testsuite/ld-libs/lib-1.s | 2 | ||||
-rw-r--r-- | ld/testsuite/ld-libs/lib-2.s | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index 7c79608..7718d84 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2009-04-16 Alan Modra <amodra@bigpond.net.au> + + * ld-libs/lib-1.s: Use "==" instead of ".set". + * ld-libs/lib-2.s: Likewise. + * ld-scripts/defined.s: Likewise. + 2009-04-15 Christophe Lyon <christophe.lyon@st.com> * ld-arm/arm-elf.exp: Add 1 more test to check undef weak diff --git a/ld/testsuite/ld-libs/lib-1.s b/ld/testsuite/ld-libs/lib-1.s index 7cc5e1d..5ff67b1 100644 --- a/ld/testsuite/ld-libs/lib-1.s +++ b/ld/testsuite/ld-libs/lib-1.s @@ -1,2 +1,2 @@ .globl foo - .set foo,0x2000 + foo == 0x2000 diff --git a/ld/testsuite/ld-libs/lib-2.s b/ld/testsuite/ld-libs/lib-2.s index af749d3..b1544f3 100644 --- a/ld/testsuite/ld-libs/lib-2.s +++ b/ld/testsuite/ld-libs/lib-2.s @@ -1,2 +1,2 @@ .globl bar - .set bar,0x1000 + bar == 0x1000 |