summaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorDave Anglin <dave.anglin@nrc.ca>2009-03-02 23:33:02 +0000
committerDave Anglin <dave.anglin@nrc.ca>2009-03-02 23:33:02 +0000
commitdfd1e198d6dca0e2ce24013942afde0a17d6f2a8 (patch)
treeb558b9f3c2307f8bad403c4aa467627c76fc9b2d /binutils
parent93efd30205d546431e95419f17680e06ad656f07 (diff)
downloadbinutils-gdb-dfd1e198d6dca0e2ce24013942afde0a17d6f2a8.tar.gz
* binutils-all/localize-hidden-1.s: Change .equ to .set.
* binutils-all/localize-hidden-2.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 9615e572283..df1c21393a1 100644
--- a/binutils/testsuite/ChangeLog
+++ b/binutils/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2009-03-02 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
+
+ * binutils-all/localize-hidden-1.s: Change .equ to .set.
+ * binutils-all/localize-hidden-2.s: Likewise.
+
2009-01-29 Nick Clifton <nickc@redhat.com>
* binutils-all/objdump.W: Do not assume that high and low PC
diff --git a/binutils/testsuite/binutils-all/localize-hidden-1.s b/binutils/testsuite/binutils-all/localize-hidden-1.s
index bdaa69d0c08..bd32cb2799c 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
- .equ Ldefault, 0x1100
- .equ Lhidden, 0x1200
- .equ Linternal, 0x1300
- .equ Lprotected, 0x1400
+ .set Ldefault, 0x1100
+ .set Lhidden, 0x1200
+ .set Linternal, 0x1300
+ .set Lprotected, 0x1400
- .equ Gdefault, 0x2100
- .equ Ghidden, 0x2200
- .equ Ginternal, 0x2300
- .equ Gprotected, 0x2400
+ .set Gdefault, 0x2100
+ .set Ghidden, 0x2200
+ .set Ginternal, 0x2300
+ .set Gprotected, 0x2400
- .equ Wdefault, 0x3100
- .equ Whidden, 0x3200
- .equ Winternal, 0x3300
- .equ Wprotected, 0x3400
+ .set Wdefault, 0x3100
+ .set Whidden, 0x3200
+ .set Winternal, 0x3300
+ .set Wprotected, 0x3400
diff --git a/binutils/testsuite/binutils-all/localize-hidden-2.s b/binutils/testsuite/binutils-all/localize-hidden-2.s
index d428c3aa470..53059268731 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
- .equ G,0x100
+ .set G,0x100