Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / Mips / Fast-ISel / pr40325.ll
blob9e64d7b2fa039ba559fb8c0bfce9873e672ee3dd
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -mtriple=mipsel -relocation-model=pic -O0 -mcpu=mips32 < %s | FileCheck %s
4 define void @test(i32 %x, ptr %p) nounwind {
5 ; CHECK-LABEL: test:
6 ; CHECK:       # %bb.0:
7 ; CHECK-NEXT:    move $1, $4
8 ; CHECK-NEXT:    move $4, $1
9 ; CHECK-NEXT:    andi $1, $1, 1
10 ; CHECK-NEXT:    sb $1, 0($5)
11 ; CHECK-NEXT:    andi $1, $4, 1
12 ; CHECK-NEXT:    bgtz $1, $BB0_1
13 ; CHECK-NEXT:    nop
14 ; CHECK-NEXT:  # %bb.1: # %foo
15 ; CHECK-NEXT:    jr $ra
16 ; CHECK-NEXT:    nop
17   %y = and i32 %x, 1
18   %c = icmp eq i32 %y, 1
19   store i1 %c, ptr %p
20   br i1 %c, label %foo, label %foo
22 foo:
23   ret void