fix buggy testcase


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32626 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Transforms/SimplifyCFG/2003-08-05-InvokeCrash.ll b/test/Transforms/SimplifyCFG/2003-08-05-InvokeCrash.ll
index 6c791d2..811fe50 100644
--- a/test/Transforms/SimplifyCFG/2003-08-05-InvokeCrash.ll
+++ b/test/Transforms/SimplifyCFG/2003-08-05-InvokeCrash.ll
@@ -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
 }