aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/and-or-fold.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/and-or-fold.ll')
-rw-r--r--test/CodeGen/X86/and-or-fold.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/and-or-fold.ll b/test/CodeGen/X86/and-or-fold.ll
index 3240bdf..a321710 100644
--- a/test/CodeGen/X86/and-or-fold.ll
+++ b/test/CodeGen/X86/and-or-fold.ll
@@ -1,4 +1,4 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | grep and | wc -l | grep 1
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | grep and | count 1
; The dag combiner should fold together (x&127)|(y&16711680) -> (x|y)&c1
; in this case.