summaryrefslogtreecommitdiff
path: root/test/CodeGen/builtin-count-zeros.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/builtin-count-zeros.c')
-rw-r--r--test/CodeGen/builtin-count-zeros.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/builtin-count-zeros.c b/test/CodeGen/builtin-count-zeros.c
index 374acc43ae..ff08bd1083 100644
--- a/test/CodeGen/builtin-count-zeros.c
+++ b/test/CodeGen/builtin-count-zeros.c
@@ -1,4 +1,4 @@
-// RUN: clang-cc -emit-llvm %s -o - | grep 'cttz' | count 2 &&
+// RUN: clang-cc -emit-llvm %s -o - | grep 'cttz' | count 2
// RUN: clang-cc -emit-llvm %s -o - | grep 'ctlz' | count 2
int a(int a) {return __builtin_ctz(a) + __builtin_clz(a);}