]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PRR doc/31355
authorBrooks Moses <brooks.moses@codesourcery.com>
Wed, 4 Apr 2007 18:09:06 +0000 (18:09 +0000)
committerBrooks Moses <brooks@gcc.gnu.org>
Wed, 4 Apr 2007 18:09:06 +0000 (11:09 -0700)
PRR doc/31355
* doc/invoke.texi (--help=): Document <languages> value, fix
formatting in tables of values.

From-SVN: r123497

gcc/ChangeLog
gcc/doc/invoke.texi

index e8786498354779eb521830e0f701409182a8285f..ace008d03a421bef33fcfcc3150498e7f7116b84 100644 (file)
@@ -1,3 +1,9 @@
+2007-04-04  Brooks Moses  <brooks.moses@codesourcery.com>
+
+       PR doc/31355
+       * doc/invoke.texi (--help=): Document <languages> value, fix
+       formatting in tables of values.
+
 2007-04-04  Danny Smith  <dannysmith.users.sourceforge.net>
 
        * config/i386/winnt-cxx.c (i386_pe_type_dllimport_p): Don't ignore
index 09f6b67196a8427d4550dafde1c7643ddc2a6375..281c634040bb32ccf23859d330d68381fc5fa73b 100644 (file)
@@ -1102,43 +1102,48 @@ line options for each tool.
 @item --help=@var{class}@r{[},@var{qualifier}@r{]}
 Print (on the standard output) a description of the command line
 options understood by the compiler that fit into a specific class.
-The class can be one of @var{optimizers}, @var{warnings}, @var{target}
-or @var{params}:
+The class can be one of @samp{optimizers}, @samp{warnings}, @samp{target},
+@samp{params}, or @var{language}:
 
-@table @gcctabopt
-@item @var{optimizers}
+@table @asis
+@item @samp{optimizers}
 This will display all of the optimization options supported by the
 compiler.
 
-@item @var{warnings}
+@item @samp{warnings}
 This will display all of the options controlling warning messages
 produced by the compiler.
 
-@item @var{target}
+@item @samp{target}
 This will display target-specific options.  Unlike the
 @option{--target-help} option however, target-specific options of the
 linker and assembler will not be displayed.  This is because those
 tools do not currently support the extended @option{--help=} syntax.
 
-@item @var{params}
+@item @samp{params}
 This will display the values recognized by the @option{--param}
 option.
+
+@item @var{language}
+This will display the options supported for @var{language}, where 
+@var{language} is the name of one of the languages supported in this 
+version of GCC.
 @end table
 
 It is possible to further refine the output of the @option{--help=}
 option by adding a comma separated list of qualifiers after the
 class.  These can be any from the following list:
 
-@table @gcctabopt
-@item undocumented
+@table @asis
+@item @samp{undocumented}
 Display only those options which are undocumented.
 
-@item joined
+@item @samp{joined}
 Display options which take an argument that appears after an equal
 sign in the same continuous piece of text, such as:
 @samp{--help=target}.
 
-@item separate
+@item @samp{separate}
 Display options which take an argument that appears as a separate word
 following the original option, such as: @samp{-o output-file}.
 @end table