1*9880d681SAndroid Build Coastguard Worker; RUN: opt -S -o - -structurizecfg < %s | FileCheck %s 2*9880d681SAndroid Build Coastguard Worker 3*9880d681SAndroid Build Coastguard Worker; CHECK-LABEL: @no_branch_to_entry_undef( 4*9880d681SAndroid Build Coastguard Worker; CHECK: entry: 5*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT: br label %entry.orig 6*9880d681SAndroid Build Coastguard Workerdefine void @no_branch_to_entry_undef(i32 addrspace(1)* %out) { 7*9880d681SAndroid Build Coastguard Workerentry: 8*9880d681SAndroid Build Coastguard Worker br i1 undef, label %for.end, label %for.body 9*9880d681SAndroid Build Coastguard Worker 10*9880d681SAndroid Build Coastguard Workerfor.body: ; preds = %entry, %for.body 11*9880d681SAndroid Build Coastguard Worker store i32 999, i32 addrspace(1)* %out, align 4 12*9880d681SAndroid Build Coastguard Worker br label %for.body 13*9880d681SAndroid Build Coastguard Worker 14*9880d681SAndroid Build Coastguard Workerfor.end: ; preds = %Flow 15*9880d681SAndroid Build Coastguard Worker ret void 16*9880d681SAndroid Build Coastguard Worker} 17*9880d681SAndroid Build Coastguard Worker 18*9880d681SAndroid Build Coastguard Worker; CHECK-LABEL: @no_branch_to_entry_true( 19*9880d681SAndroid Build Coastguard Worker; CHECK: entry: 20*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT: br label %entry.orig 21*9880d681SAndroid Build Coastguard Workerdefine void @no_branch_to_entry_true(i32 addrspace(1)* %out) { 22*9880d681SAndroid Build Coastguard Workerentry: 23*9880d681SAndroid Build Coastguard Worker br i1 true, label %for.end, label %for.body 24*9880d681SAndroid Build Coastguard Worker 25*9880d681SAndroid Build Coastguard Workerfor.body: ; preds = %entry, %for.body 26*9880d681SAndroid Build Coastguard Worker store i32 999, i32 addrspace(1)* %out, align 4 27*9880d681SAndroid Build Coastguard Worker br label %for.body 28*9880d681SAndroid Build Coastguard Worker 29*9880d681SAndroid Build Coastguard Workerfor.end: ; preds = %Flow 30*9880d681SAndroid Build Coastguard Worker ret void 31*9880d681SAndroid Build Coastguard Worker} 32