summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-12-16 02:30:24 +0000
committerChris Lattner <sabre@nondot.org>2006-12-16 02:30:24 +0000
commit4c8e36934fd3ba6d0dbe4d8c2d3ea9909a01c383 (patch)
treec21f3654a35aaa7db555bf5ef0b4fc719ddfa18c
parentc80dfba667ede2b8831d34dc59fb0b775fae705f (diff)
downloadllvm-4c8e36934fd3ba6d0dbe4d8c2d3ea9909a01c383.tar.gz
llvm-4c8e36934fd3ba6d0dbe4d8c2d3ea9909a01c383.tar.bz2
llvm-4c8e36934fd3ba6d0dbe4d8c2d3ea9909a01c383.tar.xz
Fix borken testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32627 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Transforms/InstCombine/2003-10-29-CallSiteResolve.ll4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Transforms/InstCombine/2003-10-29-CallSiteResolve.ll b/test/Transforms/InstCombine/2003-10-29-CallSiteResolve.ll
index 07b6dd2db3..d23dc32a07 100644
--- a/test/Transforms/InstCombine/2003-10-29-CallSiteResolve.ll
+++ b/test/Transforms/InstCombine/2003-10-29-CallSiteResolve.ll
@@ -4,8 +4,10 @@ declare int* %bar()
float* %foo() {
%tmp.11 = invoke float* cast (int* ()* %bar to float* ()*)()
- to label %invoke_cont except label %invoke_cont
+ to label %invoke_cont except label %X
invoke_cont:
ret float *%tmp.11
+X:
+ ret float *null
}