Fix a minor regression from my dag combiner changes. One more place which needs to...
[oota-llvm.git] / test / CodeGen / X86 / and-or-fold.ll
index 3501047abc16556f1a6d3df4806d9c246ac96c80..7733b8a5baaa4cd3cca5f057e22c41587d782c5f 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=x86 | grep and | count 1
+; RUN: llc < %s -march=x86 | grep and | count 1
 
 ; The dag combiner should fold together (x&127)|(y&16711680) -> (x|y)&c1
 ; in this case.