invoke.texi: Fix typo.

2014-06-26  Teresa Johnson  <tejohnson@google.com>

	* doc/invoke.texi: Fix typo.
	* dumpfile.c: Add support for documented -fdump-* options
	optimized/missed/note/optall.

From-SVN: r212040
This commit is contained in:
Teresa Johnson 2014-06-26 17:45:52 +00:00 committed by Teresa Johnson
parent 27dacd87b5
commit f14726bd4b
3 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2014-06-26 Teresa Johnson <tejohnson@google.com>
* doc/invoke.texi: Fix typo.
* dumpfile.c: Add support for documented -fdump-* options
optimized/missed/note/optall.
2014-06-26 Martin Jambor <mjambor@suse.cz>
* params.def (PARAM_ALLOW_LOAD_DATA_RACES)

View File

@ -6332,7 +6332,7 @@ passes).
@item missed
Enable showing missed optimization information (only available in certain
passes).
@item notes
@item note
Enable other detailed optimization information (only available in
certain passes).
@item =@var{filename}

View File

@ -107,6 +107,10 @@ static const struct dump_option_value_info dump_options[] =
{"nouid", TDF_NOUID},
{"enumerate_locals", TDF_ENUMERATE_LOCALS},
{"scev", TDF_SCEV},
{"optimized", MSG_OPTIMIZED_LOCATIONS},
{"missed", MSG_MISSED_OPTIMIZATION},
{"note", MSG_NOTE},
{"optall", MSG_ALL},
{"all", ~(TDF_RAW | TDF_SLIM | TDF_LINENO | TDF_TREE | TDF_RTL | TDF_IPA
| TDF_STMTADDR | TDF_GRAPH | TDF_DIAGNOSTIC | TDF_VERBOSE
| TDF_RHS_ONLY | TDF_NOUID | TDF_ENUMERATE_LOCALS | TDF_SCEV)},