[AArch64][SME2] Add multi-vector saturating doubling multiply high intrinsics
[llvm-project.git] / lld / test / wasm / shared-export-dynamic.s
blob015d73388f2b7b52a4e241ebd0022deab86e1635
1 # RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown -o %t.o %s
3 # By default all `default` symbols should be exported
4 # RUN: wasm-ld -shared --experimental-pic -o %t.wasm %t.o
5 # RUN: obj2yaml %t.wasm | FileCheck %s -check-prefix=DEFAULT
6 # DEFAULT: foo
8 # Verify that `--no-export-dynamic` works with `-shared`
9 # RUN: wasm-ld -shared --experimental-pic --no-export-dynamic -o %t2.wasm %t.o
10 # RUN: obj2yaml %t2.wasm | FileCheck %s -check-prefix=NO-EXPORT
11 # NO-EXPORT-NOT: foo
13 .globl foo
15 foo:
16 .functype foo () -> (i32)
17 i32.const 0
18 end_function