Merge branch 'master' into msp430
[llvm/msp430.git] / test / Transforms / LowerInvoke / 2004-02-29-PHICrash.ll
blob07770136964ee1547a037ac2a8eb8b2107eea8f7
1 ; RUN: llvm-as < %s | opt -lowerinvoke -enable-correct-eh-support -disable-output
3 define void @_ZNKSt11__use_cacheISt16__numpunct_cacheIcEEclERKSt6locale() {
4 entry:
5         br i1 false, label %then, label %UnifiedReturnBlock
6 then:           ; preds = %entry
7         invoke void @_Znwj( )
8                         to label %UnifiedReturnBlock unwind label %UnifiedReturnBlock
9 UnifiedReturnBlock:             ; preds = %then, %then, %entry
10         %UnifiedRetVal = phi i32* [ null, %entry ], [ null, %then ], [ null, %then ] ; <i32*> [#uses=0]
11         ret void
14 declare void @_Znwj()