diff options
Diffstat (limited to 'test/ELF/linkerscript/double-bss.test')
-rw-r--r-- | test/ELF/linkerscript/double-bss.test | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/ELF/linkerscript/double-bss.test b/test/ELF/linkerscript/double-bss.test deleted file mode 100644 index 32b796d01c2e..000000000000 --- a/test/ELF/linkerscript/double-bss.test +++ /dev/null @@ -1,14 +0,0 @@ -# REQUIRES: x86 -# RUN: echo '.short 0; .bss; .zero 4; .comm q,128,8' \ -# RUN: | llvm-mc -filetype=obj -triple=x86_64-unknown-linux - -o %t -# RUN: ld.lld -o %t1 --script %s %t -# RUN: llvm-objdump -section-headers %t1 | FileCheck %s -# CHECK: .bss1 00000004 0000000000000122 BSS -# CHECK-NEXT: .bss2 00000080 0000000000000128 BSS - -SECTIONS { - . = SIZEOF_HEADERS; - .text : { *(.text*) } - .bss1 : { *(.bss) } - .bss2 : { *(COMMON) } -} |