aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2010-09-06 09:23:29 +0000
committerBill Wendling <isanbard@gmail.com>2010-09-06 09:23:29 +0000
commit9afd1b0ef4d919521842e2f1216c6a8d79e09942 (patch)
treebc6ed62ab0b574726d1c47d1ba8bc57ed3a0c812
parent31d398d78c3b9b6cb8912648e7307871cb013052 (diff)
downloadllvm-9afd1b0ef4d919521842e2f1216c6a8d79e09942.zip
llvm-9afd1b0ef4d919521842e2f1216c6a8d79e09942.tar.gz
llvm-9afd1b0ef4d919521842e2f1216c6a8d79e09942.tar.bz2
Revert part of previous commit. The change for this isn't in this branch.
llvm-svn: 113153
-rw-r--r--clang/test/Sema/warn-write-strings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Sema/warn-write-strings.c b/clang/test/Sema/warn-write-strings.c
index dd0bb8a..c936a12 100644
--- a/clang/test/Sema/warn-write-strings.c
+++ b/clang/test/Sema/warn-write-strings.c
@@ -1,7 +1,7 @@
// RUN: %clang_cc1 -verify -fsyntax-only -Wwrite-strings %s
// PR4804
-char* x = "foo"; // expected-warning {{initializing 'char *' with an expression of type 'const char [4]' discards qualifiers}}
+char* x = "foo"; // expected-warning {{initializing 'char *' with an expression of type 'char const [4]' discards qualifiers}}
// PR7192
#include <stddef.h>