diff options
-rw-r--r-- | test/Transforms/InstCombine/2003-10-29-CallSiteResolve.ll | 4 |
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 } |