diff options
author | Alan Modra <amodra@gmail.com> | 2005-03-22 14:20:38 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2005-03-22 14:20:38 +0000 |
commit | 52a43e710025c249ec5d6d87ca60a9e7b82209ee (patch) | |
tree | b4ad7c93fa0a444c7058773024a5fc6b3c77bd4d /gas | |
parent | 76750a2f8dc08ff9830889b35693f99623eb610c (diff) | |
download | gdb-52a43e710025c249ec5d6d87ca60a9e7b82209ee.zip gdb-52a43e710025c249ec5d6d87ca60a9e7b82209ee.tar.gz gdb-52a43e710025c249ec5d6d87ca60a9e7b82209ee.tar.bz2 |
gas/testsuite/
* gas/elf/section5.s: Don't start directives in first column.
ld/testsuite/
* ld-elf/tbss.s: Don't start directives in first column.
* ld-scripts/weak1.s: Likewise.
* ld-scripts/weak2.s: Likewise.
* ld-undefined/weak-undef.s: Likewise.
* ld-undefined/undefined.exp: Enable tests for hppa-elf.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gas/testsuite/gas/elf/section5.s | 26 |
2 files changed, 18 insertions, 14 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 715428b..d1add90 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2005-03-23 Alan Modra <amodra@bigpond.net.au> + + * gas/elf/section5.s: Don't start directives in first column. + 2005-03-21 Nick Clifton <nickc@redhat.com> * gas/arm/iwmmxt.s: Update instructions that use the "never" value @@ -7,7 +11,7 @@ 2005-03-17 Jan Beulich <jbeulich@novell.com> - * gas/i386/intel.d: Add stderr directive. + * gas/i386/intel.d: Add stderr directive. * gas/i386/intel.e: New. * gas/i386/intel16.d: Add stderr directive. Adjust for changed source. diff --git a/gas/testsuite/gas/elf/section5.s b/gas/testsuite/gas/elf/section5.s index c5e6c7a..3a133cd 100644 --- a/gas/testsuite/gas/elf/section5.s +++ b/gas/testsuite/gas/elf/section5.s @@ -1,24 +1,24 @@ -.section .test0 -.section .test1, "", %progbits -.section .test2 -.section .test3, "aw" -.section .test4, "aw", %nobits + .section .test0 + .section .test1, "", %progbits + .section .test2 + .section .test3, "aw" + .section .test4, "aw", %nobits -.section .test1, "aw", %nobits + .section .test1, "aw", %nobits test1: .long test1 -.section .test2, "w" + .section .test2, "w" test2: .long test2 -.section .test3, "aw", %progbits + .section .test3, "aw", %progbits test3: .long test3 -.section .test4, "aw" + .section .test4, "aw" -.section .data, "a" + .section .data, "a" -.section .bss, "a" + .section .bss, "a" -.section .data, "aw", %nobits + .section .data, "aw", %nobits -.section .bss, "aw", %progbits + .section .bss, "aw", %progbits |