Mercurial > hg > CbC > CbC_llvm
comparison test/CodeGen/Mips/setuge.ll @ 0:95c75e76d11b LLVM3.4
LLVM 3.4
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 12 Dec 2013 13:56:28 +0900 |
parents | |
children | afa8332a0e37 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:95c75e76d11b |
---|---|
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* @k, align 4 | |
14 %1 = load i32* @j, align 4 | |
15 %cmp = icmp uge 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* @m, align 4 | |
22 %cmp1 = icmp uge i32 %0, %2 | |
23 %conv2 = zext i1 %cmp1 to i32 | |
24 store i32 %conv2, i32* @r2, align 4 | |
25 ret void | |
26 } |