diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/and-or-fold.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/and-or-fold.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/and-or-fold.ll b/llvm/test/CodeGen/X86/and-or-fold.ll index 3240bdf25ae..a3217100929 100644 --- a/llvm/test/CodeGen/X86/and-or-fold.ll +++ b/llvm/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. |