brintos

brintos / llvm-project-archived public Read only

0
0
Text · 336 B · 9941520 Raw
17 lines · plain
1; RUN: llc < %s -asm-verbose=false -wasm-keep-registers | FileCheck %s2 3target triple = "wasm32-unknown-unknown"4 5define void @test() #0 {6  ret void7}8 9declare void @test2() #110 11 12attributes #0 = { "wasm-export-name"="foo" }13attributes #1 = { "wasm-export-name"="bar" }14 15; CHECK: .export_name test, foo16; CHECK: .export_name test2, bar17