aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/conditional-expr.c
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-11-06 05:24:12 +0000
committerDouglas Gregor <dgregor@apple.com>2009-11-06 05:24:12 +0000
commit35de813674503b87ec5117b6492cc0a4ef7d8728 (patch)
treeed967e05d402648a4f0855bd1bf9d7ce9169af16 /test/Sema/conditional-expr.c
parent5e1b91875c275f0ec50d3680afbac150d684fdba (diff)
Turn off -Wsign-compare warnings by default
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86233 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/conditional-expr.c')
-rw-r--r--test/Sema/conditional-expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/conditional-expr.c b/test/Sema/conditional-expr.c
index 3bfeae5d4c..8cac32c82f 100644
--- a/test/Sema/conditional-expr.c
+++ b/test/Sema/conditional-expr.c
@@ -1,4 +1,4 @@
-// RUN: clang-cc -fsyntax-only -verify -pedantic %s
+// RUN: clang-cc -fsyntax-only -verify -pedantic -Wsign-compare %s
void foo() {
*(0 ? (double *)0 : (void *)0) = 0;
// FIXME: GCC doesn't consider the the following two statements to be errors.