diff options
Diffstat (limited to 'test/ELF/linkerscript/outsections-addr.s')
-rw-r--r-- | test/ELF/linkerscript/outsections-addr.s | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/test/ELF/linkerscript/outsections-addr.s b/test/ELF/linkerscript/outsections-addr.s index 003b2771c336..fda9bc994340 100644 --- a/test/ELF/linkerscript/outsections-addr.s +++ b/test/ELF/linkerscript/outsections-addr.s @@ -1,22 +1,10 @@ # REQUIRES: x86 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t -# RUN: echo "SECTIONS { \ -# RUN: .aaa 0x2000 : \ -# RUN: { \ -# RUN: *(.aaa) \ -# RUN: } \ -# RUN: .bbb 0x1 ? 0x3000 : 0x4000 : \ -# RUN: { \ -# RUN: *(.bbb) \ -# RUN: } \ -# RUN: .ccc ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)) : \ -# RUN: { \ -# RUN: *(.ccc) \ -# RUN: } \ -# RUN: .ddd 0x5001 : \ -# RUN: { \ -# RUN: *(.ddd) \ -# RUN: } \ +# RUN: echo "SECTIONS { \ +# RUN: .aaa 0x2000 : { *(.aaa) } \ +# RUN: .bbb 0x1 ? 0x3000 : 0x4000 : { *(.bbb) } \ +# RUN: .ccc ALIGN(CONSTANT(MAXPAGESIZE)) + (. & (CONSTANT(MAXPAGESIZE) - 1)) : { *(.ccc) } \ +# RUN: .ddd 0x5001 : { *(.ddd) } \ # RUN: }" > %t.script # RUN: ld.lld %t --script %t.script -o %tout # RUN: llvm-readobj -s %tout | FileCheck %s |