Replace .align with .p2align
* ld-elf/pr16498a.s: Replace .align with .p2align.
This commit is contained in:
parent
a78ad74bbf
commit
a5262f834a
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2014-01-24 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* ld-elf/pr16498a.s: Replace .align with .p2align.
|
||||||
|
|
||||||
2014-01-24 H.J. Lu <hongjiu.lu@intel.com>
|
2014-01-24 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
PR ld/16498
|
PR ld/16498
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
.globl data
|
.globl data
|
||||||
.data
|
.data
|
||||||
.align 32
|
.p2align 5
|
||||||
.type data, %object
|
.type data, %object
|
||||||
.size data, 120
|
.size data, 120
|
||||||
data:
|
data:
|
||||||
|
@ -8,14 +8,14 @@ data:
|
||||||
.zero 116
|
.zero 116
|
||||||
.globl foo
|
.globl foo
|
||||||
.section .tbss,"awT",%nobits
|
.section .tbss,"awT",%nobits
|
||||||
.align 4
|
.p2align 2
|
||||||
.type foo, %object
|
.type foo, %object
|
||||||
.size foo, 4
|
.size foo, 4
|
||||||
foo:
|
foo:
|
||||||
.zero 4
|
.zero 4
|
||||||
.globl bar
|
.globl bar
|
||||||
.section .tdata,"awT",%progbits
|
.section .tdata,"awT",%progbits
|
||||||
.align 16
|
.p2align 4
|
||||||
.type bar, %object
|
.type bar, %object
|
||||||
.size bar, 80
|
.size bar, 80
|
||||||
bar:
|
bar:
|
||||||
|
|
Loading…
Reference in a new issue