manually upgrade this testcase
authorChris Lattner <sabre@nondot.org>
Fri, 5 Jan 2007 07:34:41 +0000 (07:34 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 5 Jan 2007 07:34:41 +0000 (07:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32897 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/vec_shuffle.ll

index 01c24e76ba93dc0f7ae98466f00cd8710cecc833..564e5cd2120b7b92fa720fd8433ec09dd45072e5 100644 (file)
@@ -1,44 +1,44 @@
-; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine -disable-output &&
-; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | not grep vector_shuffle
+; RUN: llvm-as < %s | opt -instcombine -disable-output &&
+; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep vector_shuffle
 
 %T = type <4 x float>
 
 implementation
 
-%T %test1(%T %v1) {
-  %v2 = shufflevector %T %v1, %T undef, <4 x uint> <uint 0, uint 1, uint 2, uint 3>
+define %T %test1(%T %v1) {
+  %v2 = shufflevector %T %v1, %T undef, <4 x i32> <i32 0, i32 1, i32 2, i32 3>
   ret %T %v2
 }
 
-%T %test2(%T %v1) {
-  %v2 = shufflevector %T %v1, %T %v1, <4 x uint> <uint 0, uint 5, uint 2, uint 7>
+define %T %test2(%T %v1) {
+  %v2 = shufflevector %T %v1, %T %v1, <4 x i32> <i32 0, i32 5, i32 2, i32 7>
   ret %T %v2
 }
 
-float %test3(%T %A, %T %B, float %f) {
-        %C = insertelement %T %A, float %f, uint 0
-        %D = shufflevector %T %C, %T %B, <4 x uint> <uint 5, uint 0, uint 2, uint 7>
-        %E = extractelement %T %D, uint 1
+define float %test3(%T %A, %T %B, float %f) {
+        %C = insertelement %T %A, float %f, i32 0
+        %D = shufflevector %T %C, %T %B, <4 x i32> <i32 5, i32 0, i32 2, i32 7>
+        %E = extractelement %T %D, i32 1
         ret float %E
 }
 
-int %test4(<4 x int> %X) {
-        %tmp152.i53899.i = shufflevector <4 x int> %X, <4 x int> undef, <4 x uint> zeroinitializer
-        %tmp34 = extractelement <4 x int> %tmp152.i53899.i, uint 0
-        ret int %tmp34
+define i32 %test4(<4 x i32> %X) {
+        %tmp152.i53899.i = shufflevector <4 x i32> %X, <4 x i32> undef, <4 x i32> zeroinitializer
+        %tmp34 = extractelement <4 x i32> %tmp152.i53899.i, i32 0
+        ret i32 %tmp34
 }
 
-int %test5(<4 x int> %X) {
-        %tmp152.i53899.i = shufflevector <4 x int> %X, <4 x int> undef, <4 x uint> <uint 3, uint 2, uint undef, uint undef>
-        %tmp34 = extractelement <4 x int> %tmp152.i53899.i, uint 0
-        ret int %tmp34
+define i32 %test5(<4 x i32> %X) {
+        %tmp152.i53899.i = shufflevector <4 x i32> %X, <4 x i32> undef, <4 x i32> <i32 3, i32 2, i32 undef, i32 undef>
+        %tmp34 = extractelement <4 x i32> %tmp152.i53899.i, i32 0
+        ret i32 %tmp34
 }
 
-float %test6(<4 x float> %X) {
-        %X = cast <4 x float> %X to <4 x int>
-        %tmp152.i53899.i = shufflevector <4 x int> %X, <4 x int> undef, <4 x uint> zeroinitializer
-        %tmp152.i53900.i = cast <4 x int> %tmp152.i53899.i to <4 x float>
-        %tmp34 = extractelement <4 x float> %tmp152.i53900.i, uint 0
+define float %test6(<4 x float> %X) {
+        %X = bitcast <4 x float> %X to <4 x i32>
+        %tmp152.i53899.i = shufflevector <4 x i32> %X, <4 x i32> undef, <4 x i32> zeroinitializer
+        %tmp152.i53900.i = bitcast <4 x i32> %tmp152.i53899.i to <4 x float>
+        %tmp34 = extractelement <4 x float> %tmp152.i53900.i, i32 0
         ret float %tmp34
 }