1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2024-12-22 23:31:32 +00:00
llvm-6502/test/Transforms/LowerInvoke/2004-02-29-PHICrash.llx
2006-12-02 04:23:10 +00:00

17 lines
508 B
Plaintext

; RUN: llvm-upgrade < %s | llvm-as | opt -lowerinvoke -enable-correct-eh-support -disable-output
void %_ZNKSt11__use_cacheISt16__numpunct_cacheIcEEclERKSt6locale() {
entry:
br bool false, label %then, label %UnifiedReturnBlock
then: ; preds = %entry
invoke void %_Znwj( )
to label %UnifiedReturnBlock unwind label %UnifiedReturnBlock
UnifiedReturnBlock: ; preds = %entry, %then, %then
%UnifiedRetVal = phi int* [ null, %entry ], [ null, %then ], [ null, %then ]
ret void
}
declare void %_Znwj()