diff options
Diffstat (limited to 'test/ELF/linkerscript/align-empty.s')
-rw-r--r-- | test/ELF/linkerscript/align-empty.s | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/ELF/linkerscript/align-empty.s b/test/ELF/linkerscript/align-empty.s new file mode 100644 index 0000000000000..3ff71578410a0 --- /dev/null +++ b/test/ELF/linkerscript/align-empty.s @@ -0,0 +1,18 @@ +# REQUIRES: x86 +# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t + +# RUN: echo "SECTIONS { \ +# RUN: . = SIZEOF_HEADERS; \ +# RUN: abc : { } \ +# RUN: . = ALIGN(0x1000); \ +# RUN: foo : { *(foo) } \ +# RUN: }" > %t.script +# RUN: ld.lld -o %t1 --script %t.script %t -shared +# RUN: llvm-objdump -section-headers %t1 | FileCheck %s +# CHECK: Sections: +# CHECK-NEXT: Idx Name Size Address +# CHECK-NEXT: 0 00000000 0000000000000000 +# CHECK-NEXT: 1 foo 00000001 0000000000001000 + + .section foo, "a" + .byte 0 |