From: H.J. Lu Date: Fri, 24 Jan 2014 18:01:56 +0000 (-0800) Subject: Replace .align with .p2align X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a5262f834a754dcc37db768c1ee24d7ae52247e5;p=binutils-gdb.git Replace .align with .p2align * ld-elf/pr16498a.s: Replace .align with .p2align. --- diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index 9e8553a730c..39cc0fb6c03 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2014-01-24 H.J. Lu + + * ld-elf/pr16498a.s: Replace .align with .p2align. + 2014-01-24 H.J. Lu PR ld/16498 diff --git a/ld/testsuite/ld-elf/pr16498a.s b/ld/testsuite/ld-elf/pr16498a.s index 77f80e6848f..be503a28413 100644 --- a/ld/testsuite/ld-elf/pr16498a.s +++ b/ld/testsuite/ld-elf/pr16498a.s @@ -1,6 +1,6 @@ .globl data .data - .align 32 + .p2align 5 .type data, %object .size data, 120 data: @@ -8,14 +8,14 @@ data: .zero 116 .globl foo .section .tbss,"awT",%nobits - .align 4 + .p2align 2 .type foo, %object .size foo, 4 foo: .zero 4 .globl bar .section .tdata,"awT",%progbits - .align 16 + .p2align 4 .type bar, %object .size bar, 80 bar: