diff options
author | Alan Modra <amodra@gmail.com> | 2016-06-28 19:03:59 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2016-06-28 19:09:11 +0930 |
commit | d48796b5054fa2a9165bf3b3f27cc1cdfe8933a1 (patch) | |
tree | 2f4df624d73c06d48597fccb8045c95151b5362b | |
parent | 56a30421eea2253213a567bbe23d67c77c2c6a0f (diff) | |
download | gdb-d48796b5054fa2a9165bf3b3f27cc1cdfe8933a1.zip gdb-d48796b5054fa2a9165bf3b3f27cc1cdfe8933a1.tar.gz gdb-d48796b5054fa2a9165bf3b3f27cc1cdfe8933a1.tar.bz2 |
Fix new testcase for hppa64
Anything in first column is a label on hppa64.
PR gas/20247
* testsuite/gas/elf/section11.s: Don't start directives in first column.
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/testsuite/gas/elf/section11.s | 21 |
2 files changed, 14 insertions, 12 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 8958d6f..14adc82 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2016-06-28 Alan Modra <amodra@gmail.com> + + PR gas/20247 + * testsuite/gas/elf/section11.s: Don't start directives in first column. + 2016-06-28 Richard Sandiford <richard.sandiford@arm.com> * testsuite/gas/aarch64/diagnostic.s, diff --git a/gas/testsuite/gas/elf/section11.s b/gas/testsuite/gas/elf/section11.s index 200d34c..4814514 100644 --- a/gas/testsuite/gas/elf/section11.s +++ b/gas/testsuite/gas/elf/section11.s @@ -1,14 +1,11 @@ -.section .bss -.balign 16 -.skip 1 + .section .bss + .balign 16 + .skip 1 + .data + .balign 16 + .skip 1 -.data -.balign 16 -.skip 1 - - -.text -.balign 16 -.skip 1 - + .text + .balign 16 + .skip 1 |