1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

fix buggy testcase

llvm-svn: 32626
This commit is contained in:
Chris Lattner 2006-12-16 02:29:22 +00:00
parent 47233817d3
commit 8ef8f5d01c

View File

@ -3,7 +3,9 @@
; RUN: llvm-upgrade < %s | llvm-as | opt -simplifycfg -disable-output
int %test() {
%A = invoke int %test() to label %Ret except label %Ret
%A = invoke int %test() to label %Ret except label %Ret2
Ret:
ret int %A
Ret2:
ret int undef
}