aboutsummaryrefslogtreecommitdiff
path: root/gcc/c
diff options
context:
space:
mode:
authorMarek Polacek <polacek@redhat.com>2013-06-18 07:41:19 +0000
committerMarek Polacek <mpolacek@gcc.gnu.org>2013-06-18 07:41:19 +0000
commit92f202027ed5fc6d64808cc27103f88ae95cca52 (patch)
treeb8b63c55c1422f16decfa41d1211602d71e3a3c9 /gcc/c
parent69eff9da489b0e8bbf4d1795afc3d5e014a6d025 (diff)
downloadgcc-92f202027ed5fc6d64808cc27103f88ae95cca52.zip
gcc-92f202027ed5fc6d64808cc27103f88ae95cca52.tar.gz
gcc-92f202027ed5fc6d64808cc27103f88ae95cca52.tar.bz2
re PR c/57630 (Error should include -std=c11 and friends)
PR c/57630 * c-decl.c (check_for_loop_decls): Improve diagnostics messages. From-SVN: r200163
Diffstat (limited to 'gcc/c')
-rw-r--r--gcc/c/ChangeLog5
-rw-r--r--gcc/c/c-decl.c5
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index 6179c3b..05766ca 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,8 @@
+2013-06-18 Marek Polacek <polacek@redhat.com>
+
+ PR c/57630
+ * c-decl.c (check_for_loop_decls): Improve diagnostics messages.
+
2013-06-12 Balaji V. Iyer <balaji.v.iyer@intel.com>
* c-array-notation.c (build_array_notation_expr): Reject array notation
diff --git a/gcc/c/c-decl.c b/gcc/c/c-decl.c
index d9bbf5c..8170a80 100644
--- a/gcc/c/c-decl.c
+++ b/gcc/c/c-decl.c
@@ -8503,11 +8503,12 @@ check_for_loop_decls (location_t loc, bool turn_off_iso_c99_error)
the C99 for loop scope. This doesn't make much sense, so don't
allow it. */
error_at (loc, "%<for%> loop initial declarations "
- "are only allowed in C99 mode");
+ "are only allowed in C99 or C11 mode");
if (hint)
{
inform (loc,
- "use option -std=c99 or -std=gnu99 to compile your code");
+ "use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 "
+ "to compile your code");
hint = false;
}
return NULL_TREE;