Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / Inline / invoke_test-1.ll
blobc09e7aa0fe0a4e5403ce924f2fd7d012a18952e5
1 ; Test that we can inline a simple function, turning the calls in it into invoke
2 ; instructions
4 ; RUN: opt < %s -passes=inline -S | FileCheck %s
5 ; RUN: opt < %s -passes='cgscc(inline)' -S | FileCheck %s
6 ; RUN: opt < %s -passes='module-inline' -S | FileCheck %s
8 declare void @might_throw()
10 define internal void @callee() {
11 entry:
12   call void @might_throw()
13   ret void
16 ; caller returns true if might_throw throws an exception...
17 define i32 @caller() personality ptr @__gxx_personality_v0 {
18 ; CHECK-LABEL: define i32 @caller() personality ptr @__gxx_personality_v0
19 entry:
20   invoke void @callee()
21       to label %cont unwind label %exc
22 ; CHECK-NOT: @callee
23 ; CHECK: invoke void @might_throw()
25 cont:
26   ret i32 0
28 exc:
29   %exn = landingpad {ptr, i32}
30          cleanup
31   ret i32 1
34 declare i32 @__gxx_personality_v0(...)