[Reassociate] Add initial support for vector instructions.
[oota-llvm.git] / test / Transforms / InstCombine / 2007-01-18-VectorInfLoop.ll
index 0aa2022829955a59134ecd378291ddc769c1045f..fed2255c0e29d67925ab0fbe77428fb36afed766 100644 (file)
@@ -1,6 +1,6 @@
-; RUN: llvm-as < %s | opt -instcombine -disable-output
+; RUN: opt < %s -instcombine -disable-output
 
-define <4 x i32> %test(<4 x i32> %A) {
+define <4 x i32> @test(<4 x i32> %A) {
     %B = xor <4 x i32> %A, < i32 -1, i32 -1, i32 -1, i32 -1 > 
     %C = and <4 x i32> %B, < i32 -1, i32 -1, i32 -1, i32 -1 >
     ret <4 x i32> %C