]> granicus.if.org Git - clang/commitdiff
Tweak warning text from the last commit
authorDouglas Gregor <dgregor@apple.com>
Fri, 6 Mar 2009 23:46:13 +0000 (23:46 +0000)
committerDouglas Gregor <dgregor@apple.com>
Fri, 6 Mar 2009 23:46:13 +0000 (23:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66309 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/DiagnosticSemaKinds.def
test/Sema/struct-decl.c

index 27708236d1831f92dda916ac6e1a93154e4f64f9..eda47d6dbb7645cb03ab61eca60563fc422d773b 100644 (file)
@@ -775,7 +775,7 @@ DIAG(err_field_declared_as_function, ERROR,
 DIAG(err_field_incomplete, ERROR,
      "field has incomplete type %0")
 DIAG(ext_variable_sized_type_in_struct, EXTWARN,
-     "variable sized type %0 not at the end of a struct or class is a "
+     "field of variable sized type %0 not at the end of a struct or class is a "
      "GNU extension")
 DIAG(err_flexible_array_empty_struct, ERROR,
      "flexible array %0 not allowed in otherwise empty struct")
index e71a0b2b0c4f7124eb52e37acba813eee25d3d6b..3f95b7a71b8401e265f4fc7ce6706426f37b0090 100644 (file)
@@ -29,7 +29,7 @@ struct pppoe_tag {
  char tag_data[];
 };
 struct datatag {
- struct pppoe_tag hdr; //expected-warning{{variable sized type 'hdr' not at the end of a struct or class is a GNU extension}}
+ struct pppoe_tag hdr; //expected-warning{{field of variable sized type 'hdr' not at the end of a struct or class is a GNU extension}}
  char data;
 };