Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / PowerPC / ctr-cleanup.ll
blob9e13b6f75676c32d1fa1cf00dcc3571ceadce497
1 ; RUN: llc -verify-machineinstrs < %s -mcpu=a2 | FileCheck %s
2 target 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-f128:128:128-v128:128:128-n32:64"
3 target triple = "powerpc64-unknown-linux-gnu"
5 define void @main() #0 {
6 entry:
7   br i1 undef, label %for.end, label %for.body
9 for.body:                                         ; preds = %for.body, %entry
10   %indvars.iv = phi i64 [ %indvars.iv.next, %for.body ], [ 1, %entry ]
11   %indvars.iv.next = add i64 %indvars.iv, 1
12   %lftr.wideiv = trunc i64 %indvars.iv.next to i32
13   %exitcond = icmp eq i32 %lftr.wideiv, 5
14   br i1 %exitcond, label %for.end, label %for.body
16 ; CHECK: @main
17 ; CHECK: li {{[0-9]+}}, 4
18 ; CHECK-NOT: li {{[0-9]+}}, 4
19 ; CHECK: bdnz
21 for.end:                                          ; preds = %for.body, %entry
22   ret void
25 attributes #0 = { nounwind "less-precise-fpmad"="false" "frame-pointer"="non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "unsafe-fp-math"="false" "use-soft-float"="false" }