mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 17:34:41 +00:00
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:
parent
5c5f4ca6f1
commit
e5ff22e605
@ -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
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user