[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Transforms / SimplifyCFG / pr52290.ll
blob02e1455654f35ce90d96f248197cddb4952c21ed
1 ; RUN: opt < %s -simplifycfg -S | FileCheck %s
2 ; RUN: opt < %s -passes=simplifycfg -S | FileCheck %s
4 ; XFAIL: *
5 ; REQUIRES: asserts
6 ; FIXME: Fails due to infinite loop in iterativelySimplifyCFG.
8 ; ModuleID = 'test/Transforms/SimplifyCFG/pr-new.ll'
9 source_filename = "test/Transforms/SimplifyCFG/pr-new.ll"
11 define i32 @test(float %arg) gc "statepoint-example" personality i32* ()* @blam {
12 ; CHECK-LABEL: @test
13 bb:
14   %tmp = call i1 @llvm.experimental.widenable.condition()
15   br i1 %tmp, label %bb2, label %bb1
17 bb1:                                              ; preds = %bb
18   br i1 undef, label %bb7, label %bb5
20 bb2:                                              ; preds = %bb
21   %tmp3 = getelementptr inbounds i8, i8 addrspace(1)* undef, i64 16
22   br i1 undef, label %bb6, label %bb4
24 bb4:                                              ; preds = %bb2
25   call void @snork() [ "deopt"() ]
26   unreachable
28 bb5:                                              ; preds = %bb1
29   ret i32 0
31 bb6:                                              ; preds = %bb2
32   br label %bb7
34 bb7:                                              ; preds = %bb6, %bb1
35   %tmp8 = call i32 (...) @llvm.experimental.deoptimize.i32(i32 10) [ "deopt"() ]
36   ret i32 %tmp8
39 declare i32* @blam()
41 declare void @snork()
43 declare i32 @llvm.experimental.deoptimize.i32(...)
45 ; Function Attrs: inaccessiblememonly nofree nosync nounwind speculatable willreturn
46 declare i1 @llvm.experimental.widenable.condition() #0
48 attributes #0 = { inaccessiblememonly nofree nosync nounwind speculatable willreturn }