Covert this test to .s form.
[oota-llvm.git] / test / CodeGen / Generic / vector-constantexpr.ll
index eb49dbfbd737d4433d5900ed5151931e0650939b..d8e0258221c8520991177a73575bd8192156933c 100644 (file)
@@ -1,10 +1,7 @@
-; RUN: llvm-as < %s | llc
+; RUN: llc < %s
        
-void ""(float* %inregs, float* %outregs) {
+define void @""(float* %inregs, float* %outregs) {
         %a_addr.i = alloca <4 x float>          ; <<4 x float>*> [#uses=1]
-        store <4 x float> < float extractelement (<4 x float> undef, uint 3), float extractelement (<4 x float> undef, uint 0), float extractelement (<4 x float> undef, uint 1), float extractelement (<4 x float> undef, uint 2) >, <4 x float>* %a_addr.i
+        store <4 x float> < float undef, float undef, float undef, float undef >, <4 x float>* %a_addr.i
         ret void
 }
-
-
-