Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / PowerPC / ctrloop-large-ec.ll
blob0d139c3d549658efbeae8ef67e78c302169fb4ef
1 ; RUN: llc -mcpu=ppc32 -verify-machineinstrs < %s | FileCheck %s
2 target datalayout = "E-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v128:128:128-n32"
3 target triple = "powerpc-unknown-linux-gnu"
5 define void @fn1() {
6 entry:
7   br i1 undef, label %for.end, label %for.body
9 for.body:                                         ; preds = %for.body, %entry
10   %inc3 = phi i64 [ %inc, %for.body ], [ undef, %entry ]
11   %inc = add nsw i64 %inc3, 1
12   %tobool = icmp eq i64 %inc, 0
13   br i1 %tobool, label %for.end, label %for.body
15 for.end:                                          ; preds = %for.body, %entry
16   ret void
19 ; On PPC32, CTR is also 32 bits, and so cannot hold a 64-bit count.
20 ; CHECK: @fn1
21 ; CHECK-NOT: mtctr
22 ; CHECK: blr