aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/vec_shuffle.ll
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-30 16:16:01 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-30 16:16:01 +0000
commit908504347b0565c4d4817af444012be76ba4b76f (patch)
tree443cd5fa4f0eacde4cdb1601d18cd9eb5526ea43 /test/Transforms/InstCombine/vec_shuffle.ll
parent82d5ee5653fdbd9bdcd75f8509429a0d72c80fa8 (diff)
downloadexternal_llvm-908504347b0565c4d4817af444012be76ba4b76f.zip
external_llvm-908504347b0565c4d4817af444012be76ba4b76f.tar.gz
external_llvm-908504347b0565c4d4817af444012be76ba4b76f.tar.bz2
For PR411:
Update these tests to not use the same name even though the type of the value differs. After PR411 hits, type planes will be gone and it will be illegal for a name to be used twice, regardless of type. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33660 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/vec_shuffle.ll')
-rw-r--r--test/Transforms/InstCombine/vec_shuffle.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/InstCombine/vec_shuffle.ll b/test/Transforms/InstCombine/vec_shuffle.ll
index a8c83af..a53903a 100644
--- a/test/Transforms/InstCombine/vec_shuffle.ll
+++ b/test/Transforms/InstCombine/vec_shuffle.ll
@@ -35,8 +35,8 @@ define i32 @test5(<4 x i32> %X) {
}
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
+ %X1 = bitcast <4 x float> %X to <4 x i32>
+ %tmp152.i53899.i = shufflevector <4 x i32> %X1, <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