diff options
Diffstat (limited to 'clang/test/CodeGen/constant-comparison.c')
-rw-r--r-- | clang/test/CodeGen/constant-comparison.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/constant-comparison.c b/clang/test/CodeGen/constant-comparison.c index b7b2a0ed5ab..ea3e8962b33 100644 --- a/clang/test/CodeGen/constant-comparison.c +++ b/clang/test/CodeGen/constant-comparison.c @@ -1,5 +1,5 @@ -// RUN: clang -emit-llvm %s -o - 2>&1 | not grep warning && -// RUN: clang -emit-llvm %s -o - | grep @b | count 1 +// RUN: clang-cc -emit-llvm %s -o - 2>&1 | not grep warning && +// RUN: clang-cc -emit-llvm %s -o - | grep @b | count 1 int a, b; int *c1 = 1 < 2 ? &a : &b; |