Lee Wei 9bf6365237
[llvm] Remove br i1 undef from some regression tests [NFC] (#118419)
This PR removes tests with `br i1 undef` under
`llvm/tests/Transforms/ObjCARC, Reassociate, SCCP, SLPVectorizer...`.
After this PR, I'll continue to fix tests under `llvm/tests/CodeGen`,
which has more UB tests than `llvm/tests/Transforms`.
2024-12-03 20:54:36 +00:00

42 lines
1.3 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt -S -passes=ipsccp < %s | FileCheck %s
; RUN: opt -S -passes='ipsccp,function(verify<domtree>)' < %s | FileCheck %s
; DTU should not crash.
define i32 @test(i1 %arg) {
; CHECK-LABEL: @test(
; CHECK-NEXT: entry:
; CHECK-NEXT: br label [[FOR_BODY:%.*]]
; CHECK: for.body:
; CHECK-NEXT: br label [[IF_THEN2:%.*]]
; CHECK: if.then2:
; CHECK-NEXT: br label [[FOR_INC:%.*]]
; CHECK: for.inc:
; CHECK-NEXT: unreachable
;
entry:
br label %for.body
for.body: ; preds = %entry
br i1 true, label %if.then2, label %if.else
if.then2: ; preds = %for.body
br label %for.inc
if.else: ; preds = %for.body
br i1 %arg, label %lor.rhs, label %if.then19.critedge
lor.rhs: ; preds = %if.else
br i1 %arg, label %if.then19, label %for.inc
if.then19.critedge: ; preds = %if.else
br label %if.then19
if.then19: ; preds = %if.then19.critedge, %lor.rhs
unreachable
for.inc: ; preds = %lor.rhs, %if.then2
unreachable
}