Commit b2458f91 by Tobias Burnus Committed by Tobias Burnus

primary.c (match_integer_constant): Mention -fno-range-check in the error message.

2007-04-23  Tobias Burnus  <burnus@net-b.de>

        * primary.c (match_integer_constant): Mention -fno-range-check
        in the error message.

From-SVN: r124060
parent 11bac67c
2007-04-23 Tobias Burnus <burnus@net-b.de>
* primary.c (match_integer_constant): Mention -fno-range-check
in the error message.
2007-04-21 Jerry DeLisle <jvdelisle@gcc.gnu.org> 2007-04-21 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/31495 PR fortran/31495
......
...@@ -216,7 +216,8 @@ match_integer_constant (gfc_expr **result, int signflag) ...@@ -216,7 +216,8 @@ match_integer_constant (gfc_expr **result, int signflag)
if (gfc_range_check (e) != ARITH_OK) if (gfc_range_check (e) != ARITH_OK)
{ {
gfc_error ("Integer too big for its kind at %C"); gfc_error ("Integer too big for its kind at %C. This check can be "
"disabled with the option -fno-range-check");
gfc_free_expr (e); gfc_free_expr (e);
return MATCH_ERROR; return MATCH_ERROR;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment