From 409f8483d4e8ec848d99de44bd92a909877e6c6a Mon Sep 17 00:00:00 2001 From: David Edelsohn Date: Sat, 15 Apr 2000 22:27:59 +0000 Subject: [PATCH] toplev.c (display_help): Prefix "f" to "sched-verbose=". * toplev.c (display_help): Prefix "f" to "sched-verbose=". * haifa-sched.c: Update -fsched-verbose comments to use "=". From-SVN: r33172 --- gcc/ChangeLog | 5 +++++ gcc/haifa-sched.c | 8 ++++---- gcc/toplev.c | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b59b15e2812..e08f5e86493 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-04-15 David Edelsohn + + * toplev.c (display_help): Prefix "f" to "sched-verbose=". + * haifa-sched.c: Update -fsched-verbose comments to use "=". + Sat Apr 15 10:59:19 2000 Richard Kenner * Makefile.in (ggc-page.o): Now includes toplev.h. diff --git a/gcc/haifa-sched.c b/gcc/haifa-sched.c index cb046619e47..eae94808e95 100644 --- a/gcc/haifa-sched.c +++ b/gcc/haifa-sched.c @@ -197,7 +197,7 @@ static int issue_rate; #endif /* sched-verbose controls the amount of debugging output the - scheduler prints. It is controlled by -fsched-verbose-N: + scheduler prints. It is controlled by -fsched-verbose=N: N>0 and no -DSR : the output is directed to stderr. N>=10 will direct the printouts to stderr (regardless of -dSR). N=1: same as -dSR. @@ -220,7 +220,7 @@ static int nr_inter, nr_spec; static FILE *dump = 0; /* fix_sched_param() is called from toplev.c upon detection - of the -fsched-***-N options. */ + of the -fsched-verbose=N option. */ void fix_sched_param (param, val) @@ -6804,8 +6804,8 @@ schedule_insns (dump_file) return; /* Set dump and sched_verbose for the desired debugging output. If no - dump-file was specified, but -fsched-verbose-N (any N), print to stderr. - For -fsched-verbose-N, N>=10, print everything to stderr. */ + dump-file was specified, but -fsched-verbose=N (any N), print to stderr. + For -fsched-verbose=N, N>=10, print everything to stderr. */ sched_verbose = sched_verbose_param; if (sched_verbose_param == 0 && dump_file) sched_verbose = 1; diff --git a/gcc/toplev.c b/gcc/toplev.c index e90f994e734..6d8336d95cd 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -3749,7 +3749,7 @@ display_help () printf (" -d[letters] Enable dumps from specific passes of the compiler\n"); printf (" -dumpbase Base name to be used for dumps from specific passes\n"); #if defined INSN_SCHEDULING - printf (" -sched-verbose= Set the verbosity level of the scheduler\n"); + printf (" -fsched-verbose= Set the verbosity level of the scheduler\n"); #endif printf (" --help Display this information\n");