[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Transforms / SimplifyCFG / seh-nounwind.ll
blob6960183a4716363379c8b2312408a5ad16f8d714
1 ; RUN: opt -S -simplifycfg -simplifycfg-require-and-preserve-domtree=1 < %s | FileCheck %s
3 ; Don't remove invokes of nounwind functions if the personality handles async
4 ; exceptions. The @div function in this test can fault, even though it can't
5 ; throw a synchronous exception.
7 define i32 @div(i32 %n, i32 %d) nounwind {
8 entry:
9   %div = sdiv i32 %n, %d
10   ret i32 %div
13 define i32 @main() nounwind personality i8* bitcast (i32 (...)* @__C_specific_handler to i8*) {
14 entry:
15   %call = invoke i32 @div(i32 10, i32 0)
16           to label %__try.cont unwind label %lpad
18 lpad:
19   %0 = landingpad { i8*, i32 }
20           catch i8* null
21   br label %__try.cont
23 __try.cont:
24   %retval.0 = phi i32 [ %call, %entry ], [ 0, %lpad ]
25   ret i32 %retval.0
28 ; CHECK-LABEL: define i32 @main()
29 ; CHECK: invoke i32 @div(i32 10, i32 0)
31 declare i32 @__C_specific_handler(...)