commit | c80dfba667ede2b8831d34dc59fb0b775fae705f | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sat Dec 16 02:29:22 2006 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sat Dec 16 02:29:22 2006 +0000 |
tree | 6593bd4cdb884db9c623fca43395015127657688 | |
parent | adbb6383a9cca4ef43aec3b6c0add25d1f243eda [diff] [blame] |
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 }