mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-22 12:19:41 +08:00
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:
parent
d54ef62c47
commit
8d3216f82d
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user