diff options
author | Chris Lattner <sabre@nondot.org> | 2009-03-08 19:52:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-03-08 19:52:14 +0000 |
commit | 466a7f8aa61ca0d1df1f11ed2dfb2510a386cfa6 (patch) | |
tree | 206d504322b79989f13da0155a2173f5a34ca04b /test/Sema/exprs.c | |
parent | 55660a74897bf42111a8ae61c1f617645e5a9274 (diff) |
undefined -> unspecified. Thanks Mike.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66388 91177308-0d34-0410-b5e6-96231b3b80d8
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}} } |