4255fd27c5cd4d1dc1b1cc5902581e33b87029b0
[oota-llvm.git] / test / CodeGen / Mips / setule.ll
1 ; RUN: llc  -march=mipsel -mcpu=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=16
2
3 @j = global i32 5, align 4
4 @k = global i32 10, align 4
5 @l = global i32 20, align 4
6 @m = global i32 10, align 4
7 @r1 = common global i32 0, align 4
8 @r2 = common global i32 0, align 4
9 @r3 = common global i32 0, align 4
10
11 define void @test() nounwind {
12 entry:
13   %0 = load i32, i32* @j, align 4
14   %1 = load i32, i32* @k, align 4
15   %cmp = icmp ule i32 %0, %1
16   %conv = zext i1 %cmp to i32
17   store i32 %conv, i32* @r1, align 4
18 ; 16:   sltu    ${{[0-9]+}}, ${{[0-9]+}}
19 ; 16:   move    $[[REGISTER:[0-9]+]], $24
20 ; 16:   xor     $[[REGISTER]], ${{[0-9]+}}
21   %2 = load i32, i32* @m, align 4
22   %cmp1 = icmp ule i32 %2, %1
23   %conv2 = zext i1 %cmp1 to i32
24   store i32 %conv2, i32* @r2, align 4
25   ret void
26 }