From c80dfba667ede2b8831d34dc59fb0b775fae705f Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 16 Dec 2006 02:29:22 +0000 Subject: [PATCH] fix buggy testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32626 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/SimplifyCFG/2003-08-05-InvokeCrash.ll | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/Transforms/SimplifyCFG/2003-08-05-InvokeCrash.ll b/test/Transforms/SimplifyCFG/2003-08-05-InvokeCrash.ll index 6c791d2e85d..811fe50b4c7 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 } -- 2.34.1