blob: af69d7b325b9f5d29524dcb5710a92a40b16d7a6 [file] [log] [blame]
Daniel Sanders8008de52015-10-15 14:34:23 +00001; RUN: llc -march=mipsel -mattr=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=16
Reed Kotler164bb372012-10-23 01:35:48 +00002
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:
David Blaikiea79ac142015-02-27 21:17:42 +000014 %0 = load i32, i32* @k, align 4
15 %1 = load i32, i32* @j, align 4
Reed Kotler164bb372012-10-23 01:35:48 +000016 %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 Kotler7b503c22013-02-20 05:45:15 +000020; 16: move $[[REGISTER:[0-9]+]], $24
Reed Kotler164bb372012-10-23 01:35:48 +000021; 16: xor $[[REGISTER]], ${{[0-9]+}}
David Blaikiea79ac142015-02-27 21:17:42 +000022 %2 = load i32, i32* @m, align 4
Reed Kotler164bb372012-10-23 01:35:48 +000023 %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}