Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / WebAssembly / export-name.ll
blob9941520f21918165a8c1c63e3ddc8e8a6b239863
1 ; RUN: llc < %s -asm-verbose=false -wasm-keep-registers | FileCheck %s
3 target triple = "wasm32-unknown-unknown"
5 define void @test() #0 {
6   ret void
9 declare void @test2() #1
12 attributes #0 = { "wasm-export-name"="foo" }
13 attributes #1 = { "wasm-export-name"="bar" }
15 ; CHECK: .export_name test, foo
16 ; CHECK: .export_name test2, bar