diff options
-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 |