brintos

brintos / llvm-project-archived public Read only

0
0
Text · 519 B · 1a84978 Raw
23 lines · plain
1# REQUIRES: x862 3## Confirm --dynamic-list identifies symbols by entries, including wildcards.4## Entries need not match a symbol. 5 6# RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o %t.o7 8# RUN: echo '{ [fb]o?1*; };' > %t.list9# RUN: ld.lld -pie --dynamic-list %t.list %t.o -o %t10# RUN: llvm-readelf --dyn-syms %t | FileCheck %s11 12# CHECK:      Symbol table '.dynsym' contains 4 entries:13# CHECK:      boo114# CHECK-NEXT: foo115# CHECK-NEXT: foo1116 17.globl _start, boo1, foo1, foo11, foo218_start:19foo1:20foo11:21foo2:22boo1:23