[mips] Add instruction selection pattern for (seteq $LHS, 0).
[oota-llvm.git] / test / CodeGen / Mips / setcc-se.ll
1 ; RUN: llc -march=mipsel < %s | FileCheck %s
2
3 ; CHECK: seteq0:
4 ; CHECK: sltiu ${{[0-9]+}}, $4, 1
5
6 define i32 @seteq0(i32 %a) {
7 entry:
8   %cmp = icmp eq i32 %a, 0
9   %conv = zext i1 %cmp to i32
10   ret i32 %conv
11 }