diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-01-12 23:18:54 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-01-12 23:18:54 +0000 |
commit | d1e4d9bfd57f643d950eb1373f582bda4dfb8dc7 (patch) | |
tree | ae0d1106fa72edcba9623a87bba19aa460128983 /test/Sema/exprs.c | |
parent | 58002f96837562a09e2b828590c8c2580d32f020 (diff) |
Don't emit string-comparison or self-comparison warnings in
unevaluated contexts, because they only matter for code that will
actually be evaluated at runtime.
As part of this, I had to extend PartialDiagnostic to support fix-it
hints.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@93266 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/exprs.c')
-rw-r--r-- | test/Sema/exprs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Sema/exprs.c b/test/Sema/exprs.c index 9059cac22e..9acc63fa41 100644 --- a/test/Sema/exprs.c +++ b/test/Sema/exprs.c @@ -87,6 +87,10 @@ int test12(const char *X) { return X == "foo"; // expected-warning {{comparison against a string literal is unspecified}} } +int test12b(const char *X) { + return sizeof(X == "foo"); // no-warning +} + // rdar://6719156 void test13( void (^P)()) { // expected-error {{blocks support disabled - compile with -fblocks}} |