[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Transforms / SimplifyCFG / 2005-10-02-InvokeSimplify.ll
blobf224b6656de14ac50c29247a20cbb7cf4e31d44f
1 ; RUN: opt < %s -simplifycfg -simplifycfg-require-and-preserve-domtree=1 -disable-output
3 define i1 @foo() personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) {
4         %X = invoke i1 @foo( )
5                         to label %N unwind label %F             ; <i1> [#uses=1]
6 F:              ; preds = %0
7         %val = landingpad { i8*, i32 }
8                  catch i8* null
9         ret i1 false
10 N:              ; preds = %0
11         br i1 %X, label %A, label %B
12 A:              ; preds = %N
13         ret i1 true
14 B:              ; preds = %N
15         ret i1 true
18 declare i32 @__gxx_personality_v0(...)