diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-08-31 21:04:11 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-08-31 21:04:11 +0000 |
commit | ab98f9d155a0a9b085921ff1f72b00f9f43e74c4 (patch) | |
tree | bdf4585e2f236c6d773be7ffedcf79fc39846bbc /test/CodeGen/PowerPC/2007-11-16-landingpad-split.ll | |
parent | b072dd9ba434d97aac2f3b40fc81202f36c0a075 (diff) | |
download | external_llvm-ab98f9d155a0a9b085921ff1f72b00f9f43e74c4.zip external_llvm-ab98f9d155a0a9b085921ff1f72b00f9f43e74c4.tar.gz external_llvm-ab98f9d155a0a9b085921ff1f72b00f9f43e74c4.tar.bz2 |
Update more tests to the new EH scheme.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138894 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/2007-11-16-landingpad-split.ll')
-rw-r--r-- | test/CodeGen/PowerPC/2007-11-16-landingpad-split.ll | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/test/CodeGen/PowerPC/2007-11-16-landingpad-split.ll b/test/CodeGen/PowerPC/2007-11-16-landingpad-split.ll index 0c11674..ecf45ef 100644 --- a/test/CodeGen/PowerPC/2007-11-16-landingpad-split.ll +++ b/test/CodeGen/PowerPC/2007-11-16-landingpad-split.ll @@ -18,11 +18,10 @@ bb30.preheader: ; preds = %entry br label %bb30 unwind: ; preds = %cond_true, %entry - %eh_ptr = call i8* @llvm.eh.exception() ; <i8*> [#uses=2] - %eh_select = call i64 (i8*, i8*, ...)* @llvm.eh.selector.i64(i8* %eh_ptr, i8* bitcast (void ()* @__gxx_personality_v0 to i8*), i8* null) ; <i64> [#uses=0] + %exn = landingpad {i8*, i32} personality i32 (...)* @__gxx_personality_v0 + catch i8* null call void @llvm.stackrestore(i8* %tmp4) - call void @_Unwind_Resume(i8* %eh_ptr) - unreachable + resume { i8*, i32 } %exn invcont23: ; preds = %cond_true %tmp27 = load i64* %tmp26, align 8 ; <i64> [#uses=1] @@ -46,14 +45,8 @@ declare i8* @llvm.stacksave() nounwind declare void @Foo(i8**) -declare i8* @llvm.eh.exception() nounwind - -declare i64 @llvm.eh.selector.i64(i8*, i8*, ...) nounwind - -declare void @__gxx_personality_v0() - -declare void @_Unwind_Resume(i8*) - declare void @Bar(i64, %struct.Range*) declare void @llvm.stackrestore(i8*) nounwind + +declare i32 @__gxx_personality_v0(...) |