aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran
diff options
context:
space:
mode:
authorLewis Hyatt <lhyatt@gmail.com>2020-03-15 08:58:30 -0400
committerLewis Hyatt <lhyatt@gmail.com>2020-03-15 08:59:24 -0400
commitb408e010ccf6cacc1f36cef8fca3252cfa677094 (patch)
tree1042c4c45e08050bb4225b0fa108bc9f65c3b924 /gcc/fortran
parent9c3cdb43c2bdaf8a8d2e62db010b04f6086d76b7 (diff)
downloadgcc-b408e010ccf6cacc1f36cef8fca3252cfa677094.zip
gcc-b408e010ccf6cacc1f36cef8fca3252cfa677094.tar.gz
gcc-b408e010ccf6cacc1f36cef8fca3252cfa677094.tar.bz2
driver: Fix redundant descriptions in options
Addresses issues where the two-column format of options descriptions was used, but the columns were separated by spaces rather than a single tab, causing the help output to be more verbose than intended. gcc/ChangeLog: 2020-03-15 Lewis Hyatt <lhyatt@gmail.com> * common.opt: Avoid redundancy in the help text. * config/arc/arc.opt: Likewise. * config/cr16/cr16.opt: Likewise. gcc/c-family/ChangeLog: 2020-03-15 Lewis Hyatt <lhyatt@gmail.com> * c.opt: Avoid redundancy in the help text. gcc/fortran/ChangeLog: 2020-03-15 Lewis Hyatt <lhyatt@gmail.com> * lang.opt: Avoid redundancy in the help text. gcc/testsuite/ChangeLog: 2020-03-15 Lewis Hyatt <lhyatt@gmail.com> * gcc.misc-tests/help.exp: Adapt to new output for -Walloc-size-larger-than= option.
Diffstat (limited to 'gcc/fortran')
-rw-r--r--gcc/fortran/ChangeLog4
-rw-r--r--gcc/fortran/lang.opt2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 661e4ce..dd0487d 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,7 @@
+2020-03-15 Lewis Hyatt <lhyatt@gmail.com>
+
+ * lang.opt: Avoid redundancy in the help text.
+
2020-03-12 Tobias Burnus <tobias@codesourcery.com>
PR middle-end/94120
diff --git a/gcc/fortran/lang.opt b/gcc/fortran/lang.opt
index 59523f7..da4b1aa 100644
--- a/gcc/fortran/lang.opt
+++ b/gcc/fortran/lang.opt
@@ -415,7 +415,7 @@ Produce a warning at runtime if a array temporary has been created for a procedu
fconvert=
Fortran RejectNegative Joined Enum(gfc_convert) Var(flag_convert) Init(GFC_FLAG_CONVERT_NATIVE)
--fconvert=<big-endian|little-endian|native|swap> The endianness used for unformatted files.
+-fconvert=<big-endian|little-endian|native|swap> The endianness used for unformatted files.
Enum
Name(gfc_convert) Type(enum gfc_convert) UnknownError(Unrecognized option to endianness value: %qs)