Commit 8d3216f8 by Jakub Jelinek Committed by Jakub Jelinek

top.c (ffe_decode_option): Disallow lang-independent processing for -ffixed-form.

	* top.c (ffe_decode_option): Disallow lang-independent processing
	for -ffixed-form.

From-SVN: r44159
parent d54ef62c
2001-07-19 Jakub Jelinek <jakub@redhat.com>
* top.c (ffe_decode_option): Disallow lang-independent processing
for -ffixed-form.
2001-07-19 Toon Moene <toon@moene.indiv.nluug.nl>
* f/com.c (ffecom_expr_intrinsic_): Deal (correctly) with
......
......@@ -225,7 +225,10 @@ ffe_decode_option (argc, argv)
else if (strcmp (&opt[2], "no-free-form") == 0)
ffe_set_is_free_form (FALSE);
else if (strcmp (&opt[2], "fixed-form") == 0)
ffe_set_is_free_form (FALSE);
{
ffe_set_is_free_form (FALSE);
return -1;
}
else if (strcmp (&opt[2], "no-fixed-form") == 0)
ffe_set_is_free_form (TRUE);
else if (strcmp (&opt[2], "pedantic") == 0)
......
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