We recently decided to change 'event' to 'tag', and 'event section' to 'tag section', out of the rationale that the section contains a generalized tag that references a type, which may be used for something other than exceptions, and the name 'event' can be confusing in the web context. See - https://github.com/WebAssembly/exception-handling/issues/159#issuecomment-857910130 - https://github.com/WebAssembly/exception-handling/pull/161 Reviewed By: tlively Differential Revision: https://reviews.llvm.org/D104423
20 lines
550 B
LLVM
20 lines
550 B
LLVM
; 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: .tagtype
|
|
; CHECK-DAG: .functype
|