diff options
author | David Majnemer <david.majnemer@gmail.com> | 2015-07-10 07:15:17 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2015-07-10 07:15:17 +0000 |
commit | db82d2f33827dc44dc0076ad26a1a0f4638719c5 (patch) | |
tree | 426d1932604bec0dc540456540d91402c644e66a /llvm/test/Feature/exception.ll | |
parent | 0f70ee9017d080e5a068647a8e3717c483c4c51b (diff) | |
download | bcm5719-llvm-db82d2f33827dc44dc0076ad26a1a0f4638719c5.tar.gz bcm5719-llvm-db82d2f33827dc44dc0076ad26a1a0f4638719c5.zip |
Revert the new EH instructions
This reverts commits r241888-r241891, I didn't mean to commit them.
llvm-svn: 241893
Diffstat (limited to 'llvm/test/Feature/exception.ll')
-rw-r--r-- | llvm/test/Feature/exception.ll | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/llvm/test/Feature/exception.ll b/llvm/test/Feature/exception.ll index 3befbcd2430..7568ecfa5f7 100644 --- a/llvm/test/Feature/exception.ll +++ b/llvm/test/Feature/exception.ll @@ -25,72 +25,3 @@ lpad: ; preds = %entry declare void @_Z3quxv() optsize declare i32 @__gxx_personality_v0(...) - -define void @cleanupret0() personality i32 (...)* @__gxx_personality_v0 { -entry: - cleanupret i8 0 unwind label %bb -bb: - ret void -} - -define void @cleanupret1() personality i32 (...)* @__gxx_personality_v0 { -entry: - cleanupret void unwind label %bb -bb: - ret void -} - -define void @cleanupret2() personality i32 (...)* @__gxx_personality_v0 { -entry: - cleanupret i8 0 unwind to caller -} - -define void @cleanupret3() personality i32 (...)* @__gxx_personality_v0 { - cleanupret void unwind to caller -} - -define void @catchret() personality i32 (...)* @__gxx_personality_v0 { -entry: - br label %bb -bb: - catchret label %bb -} - -define i8 @catchblock() personality i32 (...)* @__gxx_personality_v0 { -entry: - br label %bb2 -bb: - ret i8 %cbv -bb2: - %cbv = catchblock i8 [i7 4] to label %bb unwind label %bb2 -} - -define void @terminateblock0() personality i32 (...)* @__gxx_personality_v0 { -entry: - br label %bb -bb: - terminateblock [i7 4] unwind label %bb -} - -define void @terminateblock1() personality i32 (...)* @__gxx_personality_v0 { -entry: - terminateblock [i7 4] unwind to caller -} - -define void @cleanupblock() personality i32 (...)* @__gxx_personality_v0 { -entry: - cleanupblock void [i7 4] - ret void -} - -define void @catchendblock0() personality i32 (...)* @__gxx_personality_v0 { -entry: - br label %bb -bb: - catchendblock unwind label %bb -} - -define void @catchendblock1() personality i32 (...)* @__gxx_personality_v0 { -entry: - catchendblock unwind to caller -} |