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
This commit is contained in:
Jakub Jelinek 2001-07-19 21:44:12 +02:00 committed by Jakub Jelinek
parent d54ef62c47
commit 8d3216f82d
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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)