mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
ad5400fa72
for pre-2.9 bitcode files. We keep x86 unaligned loads, movnt, crc32, and the target indep prefetch change. As usual, updating the testsuite is a PITA. llvm-svn: 133337
54 lines
1.8 KiB
LLVM
54 lines
1.8 KiB
LLVM
; RUN: llc < %s -disable-cfi -mtriple=x86_64-apple-darwin9 -disable-cgp-branch-opts | FileCheck %s -check-prefix=X64
|
|
; RUN: llc < %s -disable-cfi -mtriple=i386-apple-darwin9 -disable-cgp-branch-opts | FileCheck %s -check-prefix=X32
|
|
; PR1632
|
|
|
|
define void @_Z1fv() {
|
|
entry:
|
|
invoke void @_Z1gv()
|
|
to label %return unwind label %unwind
|
|
|
|
unwind: ; preds = %entry
|
|
br i1 false, label %eh_then, label %cleanup20
|
|
|
|
eh_then: ; preds = %unwind
|
|
invoke void @__cxa_end_catch()
|
|
to label %return unwind label %unwind10
|
|
|
|
unwind10: ; preds = %eh_then
|
|
%upgraded.eh_select13 = tail call i32 (i8*, i8*, ...)* @llvm.eh.selector(i8* null, i8* bitcast (void ()* @__gxx_personality_v0 to i8*), i32 1)
|
|
%upgraded.eh_select131 = sext i32 %upgraded.eh_select13 to i64
|
|
%tmp18 = icmp slt i64 %upgraded.eh_select131, 0
|
|
br i1 %tmp18, label %filter, label %cleanup20
|
|
|
|
filter: ; preds = %unwind10
|
|
unreachable
|
|
|
|
cleanup20: ; preds = %unwind10, %unwind
|
|
%eh_selector.0 = phi i64 [ 0, %unwind ], [ %upgraded.eh_select131, %unwind10 ]
|
|
ret void
|
|
|
|
return: ; preds = %eh_then, %entry
|
|
ret void
|
|
}
|
|
|
|
declare void @_Z1gv()
|
|
|
|
declare void @__gxx_personality_v0()
|
|
|
|
declare void @__cxa_end_catch()
|
|
|
|
declare i32 @llvm.eh.selector(i8*, i8*, ...) nounwind
|
|
|
|
; X64: zPLR
|
|
; X64: .byte 155
|
|
; X64-NEXT: .long ___gxx_personality_v0@GOTPCREL+4
|
|
|
|
; X32: .section __IMPORT,__pointers,non_lazy_symbol_pointers
|
|
; X32-NEXT: L___gxx_personality_v0$non_lazy_ptr:
|
|
; X32-NEXT: .indirect_symbol ___gxx_personality_v0
|
|
|
|
; X32: zPLR
|
|
; X32: .byte 155
|
|
; X32-NEXT: :
|
|
; X32-NEXT: .long L___gxx_personality_v0$non_lazy_ptr-
|