Use Align for TFL::TransientStackAlignment
[llvm-core.git] / test / CodeGen / Mips / setne.ll
blobc2c0f1a2f97ecb95528b2b3c298d1d696e097270
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 ne i32 %0, %1
15   %conv = zext i1 %cmp to i32
16   store i32 %conv, i32* @r1, align 4
17 ; 16:   xor     $[[REGISTER:[0-9]+]], ${{[0-9]+}}
18 ; 16:   sltu    ${{[0-9]+}}, $[[REGISTER]]
19 ; MMR6: sltu    ${{[0-9]+}}, $zero, ${{[0-9]+}}
20 ; 16:   move    ${{[0-9]+}}, $24
21   ret void