xref: /aosp_15_r20/external/llvm/test/Transforms/SimplifyCFG/unreachable-blocks.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: opt -simplifycfg < %s -disable-output
2*9880d681SAndroid Build Coastguard Worker
3*9880d681SAndroid Build Coastguard Workertarget datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
4*9880d681SAndroid Build Coastguard Workertarget triple = "x86_64-pc-linux-gnu"
5*9880d681SAndroid Build Coastguard Worker
6*9880d681SAndroid Build Coastguard Worker; PR11825
7*9880d681SAndroid Build Coastguard Workerdefine void @test1() {
8*9880d681SAndroid Build Coastguard Workerentry:
9*9880d681SAndroid Build Coastguard Worker  br label %return
10*9880d681SAndroid Build Coastguard Worker
11*9880d681SAndroid Build Coastguard Workerwhile_block:                                      ; preds = %and_if_cont2, %and_if_cont
12*9880d681SAndroid Build Coastguard Worker  %newlen = sub i32 %newlen, 1
13*9880d681SAndroid Build Coastguard Worker  %newptr = getelementptr i8, i8* %newptr, i64 1
14*9880d681SAndroid Build Coastguard Worker  %test = icmp sgt i32 %newlen, 0
15*9880d681SAndroid Build Coastguard Worker  br i1 %test, label %and_if1, label %and_if_cont2
16*9880d681SAndroid Build Coastguard Worker
17*9880d681SAndroid Build Coastguard Workerand_if1:                                          ; preds = %while_block
18*9880d681SAndroid Build Coastguard Worker  %char = load i8, i8* %newptr
19*9880d681SAndroid Build Coastguard Worker  %test2 = icmp ule i8 %char, 32
20*9880d681SAndroid Build Coastguard Worker  br label %and_if_cont2
21*9880d681SAndroid Build Coastguard Worker
22*9880d681SAndroid Build Coastguard Workerand_if_cont2:                                     ; preds = %and_if1, %while_block
23*9880d681SAndroid Build Coastguard Worker  %a18 = phi i1 [ %test, %while_block ], [ %test2, %and_if1 ]
24*9880d681SAndroid Build Coastguard Worker  br i1 %a18, label %while_block, label %return
25*9880d681SAndroid Build Coastguard Worker
26*9880d681SAndroid Build Coastguard Workerreturn:                                           ; preds = %and_if_cont2, %and_if_cont
27*9880d681SAndroid Build Coastguard Worker  ret void
28*9880d681SAndroid Build Coastguard Worker}
29