Commit 5e36e11e by James E Wilson Committed by Jim Wilson

Fix fortran build error on AIX.

	gcc/fortran/
	* parse.c (unexpected_eof): Call gcc_unreachable before return.

From-SVN: r254270
parent 29a4ef18
2017-10-31 Jim Wilson <wilson@tuliptree.org>
* parse.c (unexpected_eof): Call gcc_unreachable before return.
2017-10-30 Paul Thomas <pault@gcc.gnu.org>
PR fortran/80850
......
......@@ -2737,6 +2737,9 @@ unexpected_eof (void)
gfc_done_2 ();
longjmp (eof_buf, 1);
/* Avoids build error on systems where longjmp is not declared noreturn. */
gcc_unreachable ();
}
......
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