aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2009-04-16 04:24:07 +0000
committerAlan Modra <amodra@gmail.com>2009-04-16 04:24:07 +0000
commit3f904b169712db815150b4d032ca2bfff79b2b4a (patch)
treeb5fb6d447a4a237821b3f9ad98cd9d41adeca3a7 /binutils
parent015f3842665e1360df4a440b953e2fba4bba03d5 (diff)
downloadgdb-3f904b169712db815150b4d032ca2bfff79b2b4a.zip
gdb-3f904b169712db815150b4d032ca2bfff79b2b4a.tar.gz
gdb-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 'binutils')
-rw-r--r--binutils/testsuite/ChangeLog5
-rw-r--r--binutils/testsuite/binutils-all/localize-hidden-1.s24
-rw-r--r--binutils/testsuite/binutils-all/localize-hidden-2.s2
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