reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
; RUN: llc -relocation-model=pic -filetype=obj %s -o %t.o

; By default all `default` symbols should be exported
; RUN: wasm-ld -shared -o %t.wasm %t.o
; RUN: obj2yaml %t.wasm | FileCheck %s -check-prefix=DEFAULT
; DEFAULT: foo

; Verify that `--no-export-dynamic` works with `-shared`
; RUN: wasm-ld -shared --no-export-dynamic -o %t2.wasm %t.o
; RUN: obj2yaml %t2.wasm | FileCheck %s -check-prefix=NO-EXPORT
; NO-EXPORT-NOT: foo

target triple = "wasm32-unknown-emscripten"

define default i32 @foo() {
entry:
  ret i32 0
}