Add tests for 16-bit byteswaps.
authorChris Lattner <sabre@nondot.org>
Mon, 10 Jul 2006 20:25:01 +0000 (20:25 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 10 Jul 2006 20:25:01 +0000 (20:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29086 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/bswap.ll

index 75cfc1daed03775e1581f5d65e82a0146dbfce8b..6f434e3f278e7b8e1fa26aa947fd6f9267619ece 100644 (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
+}
+