[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / Mips / seteq.ll
blob0f0850f87aab9a82c72fc293b08d35593fb418d9
1 ; RUN: llc  -march=mipsel -mattr=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=16
2 ; RUN: llc  -march=mips -mcpu=mips32r6 -mattr=micromips -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=MMR6
4 @i = global i32 1, align 4
5 @j = global i32 10, align 4
6 @k = global i32 1, align 4
7 @r1 = common global i32 0, align 4
8 @r2 = common global i32 0, align 4
10 define void @test() nounwind {
11 entry:
12   %0 = load i32, i32* @i, align 4
13   %1 = load i32, i32* @k, align 4
14   %cmp = icmp eq i32 %0, %1
15   %conv = zext i1 %cmp to i32
16   store i32 %conv, i32* @r1, align 4
17 ; 16:   xor     $[[REGISTER:[0-9A-Ba-b_]+]], ${{[0-9]+}}
18 ; 16:   sltiu   $[[REGISTER:[0-9A-Ba-b_]+]], 1
19 ; MMR6: sltiu   ${{[0-9]+}}, ${{[0-9]+}}, 1
20 ; 16:   move    ${{[0-9]+}}, $24
21   ret void