[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / Transforms / CodeExtractor / inline_eh_1.ll
blobb01abb6c1e8970c8dba65e551237e9043cf3801c
1 ; RUN: opt < %s -skip-partial-inlining-cost-analysis -partial-inliner -S  | FileCheck %s
2 ; RUN: opt < %s -skip-partial-inlining-cost-analysis -passes=partial-inliner -S  | FileCheck %s
4 declare dso_local void @bar()
5 declare dso_local i32 @__CxxFrameHandler3(...)
7 define internal void @callee(i1 %cond) personality i8* bitcast (i32 (...)* @__CxxFrameHandler3 to i8*) {
8 entry:
9   br i1 %cond, label %if.then, label %if.end
11 if.then:
12   invoke void @bar()
13           to label %invoke.cont unwind label %ehcleanup
15 invoke.cont:
16   br label %try.cont
18 ehcleanup:
19   %0 = cleanuppad within none []
20   cleanupret from %0 unwind label %catch.dispatch
22 catch.dispatch:
23   %1 = catchswitch within none [label %catch] unwind to caller
25 catch:
26   %2 = catchpad within %1 [i8* null, i32 64, i8* null]
27   catchret from %2 to label %catchret.dest
29 catchret.dest:
30   br label %try.cont
32 try.cont:
33   br label %if.end
35 if.end:
36   ret void
39 define internal void @caller(i1 %cond) {
40 ; CHECK-LABEL: define {{.*}} @caller
41 entry:
42 ; CHECK: entry:
43 ; CHECK-NEXT: br i1
44 ; CHECK: codeRepl.i:
45 ; CHECK-NEXT: call void @callee.1.{{.*}}()
46   call void @callee(i1 %cond)
47   ret void
50 ; CHECK-LABEL: define {{.*}} @callee.1.{{.*}}() personality i8* bitcast (i32 (...)* @__CxxFrameHandler3 to i8*)
51 ; CHECK: invoke void @bar()
52 ; CHECK: cleanuppad
53 ; CHECK-NEXT: cleanupret
54 ; CHECK: catchswitch
55 ; CHECK: catchpad
56 ; CHECK-NEXT: catchret