[RISCV] Use RISCVSubtarget::is64Bit() instead of hasFeature(RISCV::Feature64Bit)...
[llvm-project.git] / llvm / test / Transforms / SimplifyCFG / PR25267.ll
blobd8a5ec03a37b9e94b353a9ae38101fec71788a1a
1 ; RUN: opt < %s -passes=simplifycfg -simplifycfg-require-and-preserve-domtree=1 -S | FileCheck %s
3 define void @f() {
4 entry:
5   br label %for.cond
7 for.cond:
8   %phi = phi i1 [ false, %entry ], [ true, %for.body ]
9   %select = select i1 %phi, i32 1, i32 2
10   br label %for.body
12 for.body:
13   switch i32 %select, label %for.cond [
14     i32 1, label %return
15     i32 2, label %for.body
16   ]
18 return:
19   ret void
22 ; CHECK-LABEL: define void @f(
23 ; CHECK: br label %[[LABEL:.*]]
24 ; CHECK: br label %[[LABEL]]