Commit 4c35d099 by Marek Polacek Committed by Marek Polacek

re PR fortran/85735 (f951 crashes on empty input)

	PR fortran/85735
	* options.c (gfc_post_options): Set main_input_filename.

From-SVN: r260120
parent 79e7b1fe
2018-05-10 Marek Polacek <polacek@redhat.com>
PR fortran/85735
* options.c (gfc_post_options): Set main_input_filename.
2018-05-10 Thomas Koenig <tkoenig@gcc.gnu.org> 2018-05-10 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/54613 PR fortran/54613
......
...@@ -313,6 +313,7 @@ gfc_post_options (const char **pfilename) ...@@ -313,6 +313,7 @@ gfc_post_options (const char **pfilename)
if (gfc_current_form == FORM_UNKNOWN) if (gfc_current_form == FORM_UNKNOWN)
{ {
gfc_current_form = FORM_FREE; gfc_current_form = FORM_FREE;
main_input_filename = filename;
gfc_warning_now (0, "Reading file %qs as free form", gfc_warning_now (0, "Reading file %qs as free form",
(filename[0] == '\0') ? "<stdin>" : filename); (filename[0] == '\0') ? "<stdin>" : filename);
} }
......
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