diff options
| author | Nuno Lopes <nunoplopes@sapo.pt> | 2012-06-28 22:32:27 +0000 |
|---|---|---|
| committer | Nuno Lopes <nunoplopes@sapo.pt> | 2012-06-28 22:32:27 +0000 |
| commit | b97a4e8bc241aa0739474d4f14388fd9f7991f03 (patch) | |
| tree | c959faed02a0f50b7bb7185fc772ea263c77e9d1 /llvm/test/Transforms/SimplifyCFG | |
| parent | 9ac4661afa65ac809c9cd562a25ee8cfb362cb83 (diff) | |
| download | bcm5719-llvm-b97a4e8bc241aa0739474d4f14388fd9f7991f03.tar.gz bcm5719-llvm-b97a4e8bc241aa0739474d4f14388fd9f7991f03.zip | |
make simplifyCFG erase invokes to readonly/readnone functions
llvm-svn: 159385
Diffstat (limited to 'llvm/test/Transforms/SimplifyCFG')
| -rw-r--r-- | llvm/test/Transforms/SimplifyCFG/invoke.ll | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/llvm/test/Transforms/SimplifyCFG/invoke.ll b/llvm/test/Transforms/SimplifyCFG/invoke.ll index c9169d41fff..18c6b8e4802 100644 --- a/llvm/test/Transforms/SimplifyCFG/invoke.ll +++ b/llvm/test/Transforms/SimplifyCFG/invoke.ll @@ -3,7 +3,7 @@ target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f3 declare i32 @__gxx_personality_v0(...) declare void @__cxa_call_unexpected(i8*) -declare i64 @llvm.objectsize.i64(i8*, i1) nounwind readonly +declare i32 @read_only() nounwind readonly ; CHECK: @f1 @@ -43,3 +43,42 @@ lpad: tail call void @__cxa_call_unexpected(i8* %1) noreturn nounwind unreachable } + +; CHECK: @f3 +define i32 @f3() nounwind uwtable ssp { +; CHECK-NEXT: entry +entry: +; CHECK-NEXT: ret i32 3 + %call = invoke i32 @read_only() + to label %invoke.cont unwind label %lpad + +invoke.cont: + ret i32 3 + +lpad: + %0 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) + filter [0 x i8*] zeroinitializer + %1 = extractvalue { i8*, i32 } %0, 0 + tail call void @__cxa_call_unexpected(i8* %1) noreturn nounwind + unreachable +} + +; CHECK: @f4 +define i32 @f4() nounwind uwtable ssp { +; CHECK-NEXT: entry +entry: +; CHECK-NEXT: call i32 @read_only() + %call = invoke i32 @read_only() + to label %invoke.cont unwind label %lpad + +invoke.cont: +; CHECK-NEXT: ret i32 %call + ret i32 %call + +lpad: + %0 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) + filter [0 x i8*] zeroinitializer + %1 = extractvalue { i8*, i32 } %0, 0 + tail call void @__cxa_call_unexpected(i8* %1) noreturn nounwind + unreachable +} |

