blob: 8869eb8fc547977be7af775f5c7c25b6945f86d9 [file] [log] [blame]
Reed Kotler293e5d02012-10-23 01:35:48 +00001; 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@.str = private unnamed_addr constant [22 x i8] c"1 = %i\0A1 = %i\0A0 = %i\0A\00", align 1
11
12define void @test() nounwind {
13entry:
14 %0 = load i32* @k, align 4
15 %1 = load i32* @j, align 4
16 %cmp = icmp sge i32 %0, %1
17 %conv = zext i1 %cmp to i32
18 store i32 %conv, i32* @r1, align 4
19; 16: slt ${{[0-9]+}}, ${{[0-9]+}}
Reed Kotler65692c82013-02-20 05:45:15 +000020; 16: move $[[REGISTER:[0-9]+]], $24
Reed Kotler293e5d02012-10-23 01:35:48 +000021; 16: xor $[[REGISTER]], ${{[0-9]+}}
22 %2 = load i32* @m, align 4
23 %cmp1 = icmp sge i32 %0, %2
24 %conv2 = zext i1 %cmp1 to i32
25 store i32 %conv2, i32* @r2, align 4
26 ret void
27}