From 92f202027ed5fc6d64808cc27103f88ae95cca52 Mon Sep 17 00:00:00 2001 From: Marek Polacek Date: Tue, 18 Jun 2013 07:41:19 +0000 Subject: 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 --- gcc/c/ChangeLog | 5 +++++ gcc/c/c-decl.c | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) (limited to 'gcc/c') 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 + + PR c/57630 + * c-decl.c (check_for_loop_decls): Improve diagnostics messages. + 2013-06-12 Balaji V. Iyer * 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, "% 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; -- cgit v1.1