mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
81bb5f99ad
The data layout strings do not have any effect on llc tests and will become misleadingly out of date as we continue to update the canonical data layout, so remove them from the tests. Differential Revision: https://reviews.llvm.org/D105842
19 lines
495 B
LLVM
19 lines
495 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 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
|