diff options
author | Nadav Rotem <nrotem@apple.com> | 2013-04-09 04:43:46 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2013-04-09 04:43:46 +0000 |
commit | 7b7585d1530907369919adf0a9257e2149286b64 (patch) | |
tree | a66876e91844fb0fe9ec7688cf2058dbfb95a5dc /llvm/test/Transforms/InstCombine/invoke.ll | |
parent | 2cfe46fd34158610e8456b7f894bdd5574f0eaee (diff) | |
download | bcm5719-llvm-7b7585d1530907369919adf0a9257e2149286b64.tar.gz bcm5719-llvm-7b7585d1530907369919adf0a9257e2149286b64.zip |
Revert 179071 because it is not the right way to support non standard new/new[] operators.
llvm-svn: 179084
Diffstat (limited to 'llvm/test/Transforms/InstCombine/invoke.ll')
-rw-r--r-- | llvm/test/Transforms/InstCombine/invoke.ll | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/llvm/test/Transforms/InstCombine/invoke.ll b/llvm/test/Transforms/InstCombine/invoke.ll index 4ef86ddb4d0..04eaf86a287 100644 --- a/llvm/test/Transforms/InstCombine/invoke.ll +++ b/llvm/test/Transforms/InstCombine/invoke.ll @@ -47,3 +47,19 @@ lpad: unreachable } +; CHECK: @f3 +define void @f3() nounwind uwtable ssp { +; CHECK: invoke void @llvm.donothing() + %call = invoke noalias i8* @_Znwm(i64 13) + to label %invoke.cont unwind label %lpad + +invoke.cont: + ret void + +lpad: + %1 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) + filter [0 x i8*] zeroinitializer + %2 = extractvalue { i8*, i32 } %1, 0 + tail call void @__cxa_call_unexpected(i8* %2) noreturn nounwind + unreachable +} |