[LLD][COFF] Ignore DEBUG_S_XFGHASH_TYPE/VIRTUAL
[llvm-project.git] / lld / test / wasm / export-optional-lazy.test
blob6304d6bb2cd55064840ae55300ad3b2ae88237c8
1 Optional linker-synthetic symbols are only created if they are undefined
2 in the final output.
3 This test is for a regression where an explicit --export of an lazy archive
4 symbol caused an undefined reference to an optional symbol to occur *after*
5 the optional symbols were created.
7 RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %p/Inputs/start.s -o %t.o
8 RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %p/Inputs/optional-symbol.s -o %t.a1.o
9 RUN: rm -f %t.a
10 RUN: llvm-ar rcs %t.a %t.a1.o
11 RUN: wasm-ld --export=get_optional %t.o %t.a -o %t.wasm
12 RUN: obj2yaml %t.wasm | FileCheck %s
14 CHECK:      FunctionNames:
15 CHECK-NEXT:   - Index:           0
16 CHECK-NEXT:     Name:            _start
17 CHECK-NEXT:   - Index:           1
18 CHECK-NEXT:     Name:            get_optional