mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-23 19:59:57 +00:00
8362c240ca
Various bits we want to use the new ABI actually compile with "-arch armv7k -miphoneos-version-min=9.0". Not ideal, but also not ridiculous given how slices work. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@258975 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
792 B
LLVM
26 lines
792 B
LLVM
; RUN: llc < %s -mtriple=armv7-apple-ios -arm-atomic-cfg-tidy=0 | FileCheck %s -check-prefix=IOS
|
|
; RUN: llc < %s -mtriple=armv7-apple-watchos -arm-atomic-cfg-tidy=0 | FileCheck %s -check-prefix=IOS
|
|
; RUN: llc < %s -mtriple=armv7k-apple-ios -arm-atomic-cfg-tidy=0 | FileCheck %s -check-prefix=WATCHABI
|
|
; RUN: llc < %s -mtriple=armv7k-apple-watchos -arm-atomic-cfg-tidy=0 | FileCheck %s -check-prefix=WATCHABI
|
|
|
|
declare void @func()
|
|
|
|
declare i32 @__gxx_personality_sj0(...)
|
|
|
|
define void @test0() personality i8* bitcast (i32 (...)* @__gxx_personality_sj0 to i8*) {
|
|
entry:
|
|
invoke void @func()
|
|
to label %cont unwind label %lpad
|
|
|
|
cont:
|
|
ret void
|
|
|
|
lpad:
|
|
%exn = landingpad { i8*, i32 }
|
|
cleanup
|
|
resume { i8*, i32 } %exn
|
|
}
|
|
|
|
; IOS: __Unwind_SjLj_Resume
|
|
; WATCHABI: __Unwind_Resume
|