1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

FileCheck'ize test.

llvm-svn: 136135
This commit is contained in:
Jim Grosbach 2011-07-26 20:49:44 +00:00
parent 470df5ce10
commit 906ecb46ed

View File

@ -1,29 +1,30 @@
; RUN: llc < %s -march=arm -mattr=+v6 | \ ; RUN: llc < %s -march=arm -mattr=+v6 | FileCheck %s
; RUN: grep sxtb | count 2
; RUN: llc < %s -march=arm -mattr=+v6 | \
; RUN: grep sxtb | grep ror | count 1
; RUN: llc < %s -march=arm -mattr=+v6 | \
; RUN: grep sxtab | count 1
define i32 @test0(i8 %A) { define i32 @test0(i8 %A) {
%B = sext i8 %A to i32 ; CHECK: test0
ret i32 %B ; CHECK: sxtb r0, r0
%B = sext i8 %A to i32
ret i32 %B
} }
define signext i8 @test1(i32 %A) { define signext i8 @test1(i32 %A) {
%B = lshr i32 %A, 8 ; CHECK: test1
%C = shl i32 %A, 24 ; CHECK: sxtb r0, r0, ror #8
%D = or i32 %B, %C %B = lshr i32 %A, 8
%E = trunc i32 %D to i8 %C = shl i32 %A, 24
ret i8 %E %D = or i32 %B, %C
%E = trunc i32 %D to i8
ret i8 %E
} }
define signext i32 @test2(i32 %A, i32 %X) { define signext i32 @test2(i32 %A, i32 %X) {
%B = lshr i32 %A, 8 ; CHECK: test2
%C = shl i32 %A, 24 ; CHECK: sxtab r0, r1, r0
%D = or i32 %B, %C %B = lshr i32 %A, 8
%E = trunc i32 %D to i8 %C = shl i32 %A, 24
%F = sext i8 %E to i32 %D = or i32 %B, %C
%G = add i32 %F, %X %E = trunc i32 %D to i8
ret i32 %G %F = sext i8 %E to i32
%G = add i32 %F, %X
ret i32 %G
} }