Land the long talked about "type system rewrite" patch. This
[llvm/stm8.git] / test / Transforms / PruneEH / recursivetest.ll
blob724c7cf224c1f02ccc6953665a3ecb375b24c098
1 ; RUN: opt < %s -prune-eh -S | not grep invoke
3 define internal i32 @foo() {
4         invoke i32 @foo( )
5                         to label %Normal unwind label %Except           ; <i32>:1 [#uses=0]
6 Normal:         ; preds = %0
7         ret i32 12
8 Except:         ; preds = %0
9         ret i32 123
12 define i32 @caller() {
13         invoke i32 @foo( )
14                         to label %Normal unwind label %Except           ; <i32>:1 [#uses=0]
15 Normal:         ; preds = %0
16         ret i32 0
17 Except:         ; preds = %0
18         ret i32 1