aboutsummaryrefslogtreecommitdiff
path: root/gcc/opts-global.c
diff options
context:
space:
mode:
authorSharad Singhai <singhai@google.com>2012-11-01 07:34:44 +0000
committerSharad Singhai <singhai@gcc.gnu.org>2012-11-01 07:34:44 +0000
commit2b4e6bf1d556f89711726eaa02b125ed6f39a82f (patch)
tree47725ebeed1bb76102194e7ca04ca401b8d512ff /gcc/opts-global.c
parentc3a76b2f482f048a577cc4251184748d8ef27157 (diff)
downloadgcc-2b4e6bf1d556f89711726eaa02b125ed6f39a82f.zip
gcc-2b4e6bf1d556f89711726eaa02b125ed6f39a82f.tar.gz
gcc-2b4e6bf1d556f89711726eaa02b125ed6f39a82f.tar.bz2
invoke.texi: Update -fopt-info documentation.
2012-11-01 Sharad Singhai <singhai@google.com> * doc/invoke.texi: Update -fopt-info documentation. * dumpfile.c: Move dump_flags here from passes.c. Rename opt_info_options to optinfo_verbosity_options. Add optgroup_options. (dump_files): Add field for optinfo_flags in the static initializer. (dump_register): Handle additional parameter for optgroup_flags. (opt_info_enable_passes): Renamed opt_info_enable_all. Handle optgroup_flags. Fix documentation. (opt_info_switch_p_1): Handle optgroup options. (opt_info_switch_p): Handle optgroup_flags. Warn on multiple files. * dumpfile.h (dump_register): Additional argument for optgroup_flags. All callers updated. (struct dump_file_info): Add field for optgroup_flags. Define OPTGROUP_* flags. * tree-pass.h (struct opt_pass): Add addtional field for optinfo_flags. All opt_pass static initializers updated. * opts-global.c (dump_remap_tree_vectorizer_verbose): Use 'all' instead of 'optall'. (handle_common_deferred_options): Fix typo in error message. * passes.c (register_one_dump_file): Add argument for optgroup_flags. Turn on OPTGROUP_IPA for IPA passes. Move dump_flags from here to dumpfile.c. * statistics.c (statistics_early_init): Use OPTGROUP_NONE in call to dump_register. testsuite/ChangeLog * testsuite/gcc.dg/plugin/selfassign.c: Add opgtroup_flags initializer. * testsuite/gcc.dg/plugin/one_time_plugin.c: Likewise. * testsuite/g++.dg/plugin/selfassign.c: Likewise. * testsuite/g++.dg/plugin/dumb_plugin.c: Likewise. From-SVN: r193061
Diffstat (limited to 'gcc/opts-global.c')
-rw-r--r--gcc/opts-global.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/opts-global.c b/gcc/opts-global.c
index ccbfeef..5ebc630 100644
--- a/gcc/opts-global.c
+++ b/gcc/opts-global.c
@@ -240,7 +240,7 @@ read_cmdline_options (struct gcc_options *opts, struct gcc_options *opts_set,
REPORT_VECTORIZED_LOCATIONS ==> "-optimized"
REPORT_UNVECTORIZED_LOCATIONS ==> "-missed"
- Any higher verbosity levels get mapped to "-optall" flags. */
+ Any higher verbosity levels get mapped to "-all" flags. */
static void
dump_remap_tree_vectorizer_verbose (const char *arg)
@@ -259,7 +259,7 @@ dump_remap_tree_vectorizer_verbose (const char *arg)
remapped_opt_info = "missed";
break;
default:
- remapped_opt_info = "optall";
+ remapped_opt_info = "all";
break;
}
@@ -390,7 +390,7 @@ handle_common_deferred_options (void)
case OPT_fopt_info_:
if (!opt_info_switch_p (opt->arg))
- error ("unrecognized command line option %<-fopt-info%s%>",
+ error ("unrecognized command line option %<-fopt-info-%s%>",
opt->arg);
break;