aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/builtin-count-zeros.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CodeGen/builtin-count-zeros.c')
-rw-r--r--clang/test/CodeGen/builtin-count-zeros.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/builtin-count-zeros.c b/clang/test/CodeGen/builtin-count-zeros.c
index 374acc4..ff08bd1 100644
--- a/clang/test/CodeGen/builtin-count-zeros.c
+++ b/clang/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);}