diff options
Diffstat (limited to 'test/Sema/exprs.c')
-rw-r--r-- | test/Sema/exprs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/exprs.c b/test/Sema/exprs.c index e307eb7758..25da12b586 100644 --- a/test/Sema/exprs.c +++ b/test/Sema/exprs.c @@ -78,6 +78,6 @@ void test11(struct mystruct P, float F) { // PR3753 int test12(const char *X) { - return X == "foo"; // expected-warning {{comparison against a string literal is undefined}} + return X == "foo"; // expected-warning {{comparison against a string literal is unspecified}} } |