summaryrefslogtreecommitdiff
path: root/test/Transforms/LowerInvoke/2004-02-29-PHICrash.ll
diff options
context:
space:
mode:
authorMark Seaborn <mseaborn@chromium.org>2014-03-20 19:54:47 +0000
committerMark Seaborn <mseaborn@chromium.org>2014-03-20 19:54:47 +0000
commit9bb9615e1fd8e3d2654d3fe394ee6f486a0cb8a5 (patch)
treed1baa3bc6eb39e5dfb5656dac0c443b0aed83b69 /test/Transforms/LowerInvoke/2004-02-29-PHICrash.ll
parent56210e69eb3e26cd62391055e2054bf34342c119 (diff)
downloadllvm-9bb9615e1fd8e3d2654d3fe394ee6f486a0cb8a5.tar.gz
llvm-9bb9615e1fd8e3d2654d3fe394ee6f486a0cb8a5.tar.bz2
llvm-9bb9615e1fd8e3d2654d3fe394ee6f486a0cb8a5.tar.xz
Remove LowerInvoke's obsolete "-enable-correct-eh-support" option
This option caused LowerInvoke to generate code using SJLJ-based exception handling, but there is no code left that interprets the jmp_buf stack that the resulting code maintained (llvm.sjljeh.jblist). This option has been obsolete for a while, and replaced by SjLjEHPrepare. This leaves the default behaviour of LowerInvoke, which is to convert invokes to calls. Differential Revision: http://llvm-reviews.chandlerc.com/D3136 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204388 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/LowerInvoke/2004-02-29-PHICrash.ll')
-rw-r--r--test/Transforms/LowerInvoke/2004-02-29-PHICrash.ll15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/Transforms/LowerInvoke/2004-02-29-PHICrash.ll b/test/Transforms/LowerInvoke/2004-02-29-PHICrash.ll
deleted file mode 100644
index bddb70248e..0000000000
--- a/test/Transforms/LowerInvoke/2004-02-29-PHICrash.ll
+++ /dev/null
@@ -1,15 +0,0 @@
-; RUN: opt < %s -lowerinvoke -enable-correct-eh-support -disable-output
-
-define void @_ZNKSt11__use_cacheISt16__numpunct_cacheIcEEclERKSt6locale() {
-entry:
- br i1 false, label %then, label %UnifiedReturnBlock
-then: ; preds = %entry
- invoke void @_Znwj( )
- to label %UnifiedReturnBlock unwind label %UnifiedReturnBlock
-UnifiedReturnBlock: ; preds = %then, %then, %entry
- %UnifiedRetVal = phi i32* [ null, %entry ], [ null, %then ], [ null, %then ] ; <i32*> [#uses=0]
- ret void
-}
-
-declare void @_Znwj()
-