summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/WebAssembly/import-module.ll
blob: 0cf0f2f25e0b9325e629ae5fcd96bdf9323351d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: llc < %s -asm-verbose=false -wasm-keep-registers | FileCheck %s

target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
target triple = "wasm32-unknown-unknown"

define void @test() {
  call void @foo()
  call void @plain()
  ret void
}

declare void @foo() #0
declare void @plain()

attributes #0 = { "wasm-import-module"="bar" "wasm-import-name"="qux" }

; CHECK-NOT: .import_module plain
;     CHECK: .import_module foo, bar
;     CHECK: .import_name foo, qux
; CHECK-NOT: .import_module plain
OpenPOWER on IntegriCloud