[llvm-branch-commits] [cfe-branch] r113153 - /cfe/branches/release_28/test/Sema/warn-write-strings.c

Bill Wendling isanbard at gmail.com
Mon Sep 6 02:23:29 PDT 2010


Author: void
Date: Mon Sep  6 04:23:29 2010
New Revision: 113153

URL: http://llvm.org/viewvc/llvm-project?rev=113153&view=rev
Log:
Revert part of previous commit. The change for this isn't in this branch.

Modified:
    cfe/branches/release_28/test/Sema/warn-write-strings.c

Modified: cfe/branches/release_28/test/Sema/warn-write-strings.c
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/release_28/test/Sema/warn-write-strings.c?rev=113153&r1=113152&r2=113153&view=diff
==============================================================================
--- cfe/branches/release_28/test/Sema/warn-write-strings.c (original)
+++ cfe/branches/release_28/test/Sema/warn-write-strings.c Mon Sep  6 04:23:29 2010
@@ -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>





More information about the llvm-branch-commits mailing list