Move a DenseMap's declaration outside of a loop, and just call
[oota-llvm.git] / test / Transforms / InstCombine / vec_narrow.ll
index 1ad671c50915e1d5c710cece6b90124a041de977..9063148424c513efdff78123a3a16ee52a0cb1c6 100644 (file)
@@ -1,11 +1,12 @@
-; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | grep 'add float'
+; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \
+; RUN:   grep {add float}
 
-%V = type <4 x float>
+        %V = type <4 x float>
 
-float %test(%V %A, %V %B, float %f) {
-        %C = insertelement %V %A, float %f, uint 0
-        %D = add %V %C, %B
-        %E = extractelement %V %D, uint 0
+define float @test(%V %A, %V %B, float %f) {
+        %C = insertelement %V %A, float %f, i32 0               ; <%V> [#uses=1]
+        %D = add %V %C, %B              ; <%V> [#uses=1]
+        %E = extractelement %V %D, i32 0                ; <float> [#uses=1]
         ret float %E
 }