Commit 13c7a7e5 by Francois-Xavier Coudert Committed by François-Xavier Coudert

re PR fortran/39576 (gcc/fortran/error.c's error.c missing "break")

	PR fortran/39576
	* error.c (error_print): Add missing break statement.

From-SVN: r147257
parent 6e8cb9be
2009-05-07 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR fortran/39576
* error.c (error_print): Add missing break statement.
2009-05-07 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR fortran/36382
* invoke.texi: Document that -fdollar-ok does not allow $ to be
used in IMPLICIT statement.
......
......@@ -533,6 +533,7 @@ error_print (const char *type, const char *format0, va_list argp)
case 'u':
arg[pos].type = TYPE_UINTEGER;
break;
case 'l':
c = *format++;
......
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