Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Feature / seh-nounwind.ll
bloba590d5cd418c8e0054176e551d51d9386715b968
1 ; RUN: opt -S -O2 < %s | FileCheck %s
3 ; Feature test that verifies that all optimizations leave asynch personality
4 ; invokes of nounwind functions alone.
5 ; The @div function in this test can fault, even though it can't
6 ; throw a synchronous exception.
8 define i32 @div(i32 %n, i32 %d) nounwind noinline {
9 entry:
10   %div = sdiv i32 %n, %d
11   ret i32 %div
14 define i32 @main() nounwind personality ptr @__C_specific_handler {
15 entry:
16   %call = invoke i32 @div(i32 10, i32 0)
17           to label %__try.cont unwind label %lpad
19 lpad:
20   %0 = landingpad { ptr, i32 }
21           catch ptr null
22   br label %__try.cont
24 __try.cont:
25   %retval.0 = phi i32 [ %call, %entry ], [ 0, %lpad ]
26   ret i32 %retval.0
29 ; CHECK-LABEL: define i32 @main()
30 ; CHECK: invoke i32 @div(i32 10, i32 0)
32 declare i32 @__C_specific_handler(...)