[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / Hexagon / hwloop-swap.ll
blobfdb154ab5bbe84eaea1366b0882fdaa34b830df2
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
3 ; Test that the hardware loop pass does not alter the comparison
4 ; to use the result from the induction expression instead of
5 ; from the Phi.
7 ; CHECK: cmpb.gtu([[REG0:r[0-9]+]]
8 ; CHECK: [[REG0]] = add([[REG0]],
10 define void @f0() #0 {
11 b0:
12   br label %b1
14 b1:                                               ; preds = %b1, %b0
15   br i1 undef, label %b1, label %b2
17 b2:                                               ; preds = %b2, %b1
18   %v0 = phi i32 [ %v3, %b2 ], [ undef, %b1 ]
19   %v1 = trunc i32 %v0 to i8
20   %v2 = icmp ugt i8 %v1, 44
21   %v3 = add i32 %v0, -30
22   br i1 %v2, label %b2, label %b3
24 b3:                                               ; preds = %b2
25   ret void
28 attributes #0 = { nounwind "target-cpu"="hexagonv55" }