You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
552 B
20 lines
552 B
4 months ago
|
; RUN: llc < %s -O0 -filetype=null -exception-model=wasm -mattr=+exception-handling
|
||
|
; RUN: llc < %s -O0 -filetype=asm -asm-verbose=false -exception-model=wasm -mattr=+exception-handling | FileCheck %s
|
||
|
|
||
|
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
|
||
|
target triple = "wasm32-unknown-unknown"
|
||
|
|
||
|
declare void @llvm.wasm.throw(i32, i8*)
|
||
|
declare void @g()
|
||
|
|
||
|
define i32 @test(i8* %p) {
|
||
|
%n = alloca i32
|
||
|
call void @llvm.wasm.throw(i32 0, i8* %p)
|
||
|
call void @g()
|
||
|
ret i32 0
|
||
|
}
|
||
|
|
||
|
; CHECK-DAG: .globaltype
|
||
|
; CHECK-DAG: .eventtype
|
||
|
; CHECK-DAG: .functype
|