Add tests for 16-bit byteswaps.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29086 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-07-10 20:25:01 +00:00
parent 5c5f4ca6f1
commit e5ff22e605

View File

@ -1,4 +1,4 @@
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep 'call.*llvm.bswap' | wc -l | grep 2
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep 'call.*llvm.bswap' | wc -l | grep 4
uint %test1(uint %i) {
%tmp1 = shr uint %i, ubyte 24 ; <uint> [#uses=1]
@ -26,3 +26,17 @@ uint %test2(uint %arg) {
ret uint %tmp14
}
ushort %test3(ushort %s) {
%tmp2 = shr ushort %s, ubyte 8
%tmp4 = shl ushort %s, ubyte 8
%tmp5 = or ushort %tmp2, %tmp4
ret ushort %tmp5
}
ushort %test4(ushort %s) {
%tmp2 = shr ushort %s, ubyte 8
%tmp4 = shl ushort %s, ubyte 8
%tmp5 = or ushort %tmp4, %tmp2
ret ushort %tmp5
}