aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/fortran/lang.opt4
-rw-r--r--gcc/fortran/options.c4
2 files changed, 0 insertions, 8 deletions
diff --git a/gcc/fortran/lang.opt b/gcc/fortran/lang.opt
index 5989365..ff670d6 100644
--- a/gcc/fortran/lang.opt
+++ b/gcc/fortran/lang.opt
@@ -97,10 +97,6 @@ fimplicit-none
F95
Specify that no implicit typing is allowed, unless overridden by explicit IMPLICIT statements
-ffixed-line-length-72
-F95 RejectNegative
-Use 72 character line width in fixed mode
-
ffixed-line-length-80
F95 RejectNegative
Use 80 character line width in fixed mode
diff --git a/gcc/fortran/options.c b/gcc/fortran/options.c
index a23773e..b0f9a76 100644
--- a/gcc/fortran/options.c
+++ b/gcc/fortran/options.c
@@ -260,10 +260,6 @@ gfc_handle_option (size_t scode, const char *arg, int value)
gfc_option.flag_repack_arrays = value;
break;
- case OPT_ffixed_line_length_72:
- gfc_option.fixed_line_length = 72;
- break;
-
case OPT_ffixed_line_length_80:
gfc_option.fixed_line_length = 80;
break;