* binutils-all/localize-hidden-1.s: Change .equ to .set.

* binutils-all/localize-hidden-2.s: Likewise.
This commit is contained in:
Dave Anglin
2009-03-02 23:33:02 +00:00
parent 93efd30205
commit dfd1e198d6
3 changed files with 18 additions and 13 deletions

View File

@ -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> 2009-01-29 Nick Clifton <nickc@redhat.com>
* binutils-all/objdump.W: Do not assume that high and low PC * binutils-all/objdump.W: Do not assume that high and low PC

View File

@ -20,17 +20,17 @@
.protected Gprotected .protected Gprotected
.protected Wprotected .protected Wprotected
.equ Ldefault, 0x1100 .set Ldefault, 0x1100
.equ Lhidden, 0x1200 .set Lhidden, 0x1200
.equ Linternal, 0x1300 .set Linternal, 0x1300
.equ Lprotected, 0x1400 .set Lprotected, 0x1400
.equ Gdefault, 0x2100 .set Gdefault, 0x2100
.equ Ghidden, 0x2200 .set Ghidden, 0x2200
.equ Ginternal, 0x2300 .set Ginternal, 0x2300
.equ Gprotected, 0x2400 .set Gprotected, 0x2400
.equ Wdefault, 0x3100 .set Wdefault, 0x3100
.equ Whidden, 0x3200 .set Whidden, 0x3200
.equ Winternal, 0x3300 .set Winternal, 0x3300
.equ Wprotected, 0x3400 .set Wprotected, 0x3400

View File

@ -1,2 +1,2 @@
.globl G .globl G
.equ G,0x100 .set G,0x100