diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2009-04-03 10:15:21 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@codesourcery.com> | 2009-04-03 10:15:21 +0000 |
commit | 6c03179c327ed55f7b870c9043943cd7883114d9 (patch) | |
tree | 6a2a856231d394521b6726603104be2cb2bfff7e /ld | |
parent | 3bb77e00843f89f2145e3d727de1b5b094897e05 (diff) | |
download | gdb-6c03179c327ed55f7b870c9043943cd7883114d9.zip gdb-6c03179c327ed55f7b870c9043943cd7883114d9.tar.gz gdb-6c03179c327ed55f7b870c9043943cd7883114d9.tar.bz2 |
* ld-scripts/rgn-at.s: Use explicit .section pseudos.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | ld/testsuite/ld-scripts/rgn-at.s | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index 7847d8d..e15d62a 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2009-04-03 Nathan Sidwell <nathan@codesourcery.com> + + * ld-scripts/rgn-at.s: Use explicit .section pseudos. + 2009-04-03 Dave Korn <dave.korn.cygwin@gmail.com> * ld-pe/image_size.d (#target): Also run test on Cygwin and x86_64 diff --git a/ld/testsuite/ld-scripts/rgn-at.s b/ld/testsuite/ld-scripts/rgn-at.s index 406f875..0628046 100644 --- a/ld/testsuite/ld-scripts/rgn-at.s +++ b/ld/testsuite/ld-scripts/rgn-at.s @@ -1,6 +1,6 @@ - .text + .section .text .long 0x12345678 - .data + .section .data .long 0x9abcdef0 - .bss + .section .bss .long 0 |