Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / WebAssembly / import-module.ll
blob1d423fbf5426dd716c914dd7bb20672357795837
1 ; RUN: llc < %s -asm-verbose=false -wasm-keep-registers | FileCheck %s
3 target triple = "wasm32-unknown-unknown"
5 define void @test() {
6   call void @foo()
7   call void @plain()
8   ret void
11 declare void @foo() #0
12 declare void @plain()
14 attributes #0 = { "wasm-import-module"="bar" "wasm-import-name"="qux" }
16 ; CHECK-NOT: .import_module plain
17 ;     CHECK: .import_module foo, bar
18 ;     CHECK: .import_name foo, qux
19 ; CHECK-NOT: .import_module plain