3 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
4 # RUN: ld.lld --shared %t.o -o /dev/null 2>&1 | count 0
5 # RUN: ld.lld -e A --unresolved-symbols=ignore-all %t.o -o /dev/null 2>&1 | count 0
7 # RUN: echo '.globl B; B: ret' | llvm-mc -filetype=obj -triple=x86_64-unknown-linux - -o %t1.o
8 # RUN: ld.lld --shared %t1.o -o %t1.so
9 # RUN: ld.lld -e A %t.o %t1.so -o /dev/null 2>&1 | count 0
11 # RUN: ld.lld --gc-sections %t.o %t1.so -o /dev/null 2>&1 | count 0
16 .section .text.A,"ax",@progbits