forked from OSchip/llvm-project
15 lines
379 B
Plaintext
15 lines
379 B
Plaintext
# 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-readelf -S %t1 | FileCheck %s
|
|
# CHECK: .bss1 NOBITS
|
|
# CHECK-NEXT: .bss2 NOBITS
|
|
|
|
SECTIONS {
|
|
. = SIZEOF_HEADERS;
|
|
.text : { *(.text*) }
|
|
.bss1 : { *(.bss) }
|
|
.bss2 : { *(COMMON) }
|
|
}
|