
Even for EABI, NetBSD uses DWARF EH, not EHABI. This change matches the Clang frontend behavior, and fixes link errors caused by incorrect references to `__cxa_end_cleanup` rather than `_Unwind_Resume`. With this change and #143055, I was able to run [zig-bootstrap](https://github.com/ziglang/zig-bootstrap) to completion for `arm-netbsd10.1-eabihf`.
33 lines
1.2 KiB
LLVM
33 lines
1.2 KiB
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
|
|
; RUN: llc < %s -mtriple=armv7-none-gnueabihf -arm-atomic-cfg-tidy=0 | FileCheck %s -check-prefix=EABI
|
|
; RUN: llc < %s -mtriple=armv7-none-none -arm-atomic-cfg-tidy=0 | FileCheck %s -check-prefix=ABI
|
|
; RUN: llc < %s -mtriple=armv7-netbsd-none -arm-atomic-cfg-tidy=0 | FileCheck %s -check-prefix=NETBSD
|
|
; RUN: llc < %s -mtriple=armv7-netbsd-eabihf -arm-atomic-cfg-tidy=0 | FileCheck %s -check-prefix=NETBSD
|
|
|
|
declare void @func()
|
|
|
|
declare i32 @__gxx_personality_sj0(...)
|
|
|
|
define void @test0() personality ptr @__gxx_personality_sj0 {
|
|
entry:
|
|
invoke void @func()
|
|
to label %cont unwind label %lpad
|
|
|
|
cont:
|
|
ret void
|
|
|
|
lpad:
|
|
%exn = landingpad { ptr, i32 }
|
|
cleanup
|
|
resume { ptr, i32 } %exn
|
|
}
|
|
|
|
; IOS: __Unwind_SjLj_Resume
|
|
; WATCHABI: __Unwind_Resume
|
|
; EABI: __cxa_end_cleanup
|
|
; ABI: _Unwind_Resume
|
|
; NETBSD: _Unwind_Resume
|