diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/haifa-sched.c | 8 | ||||
-rw-r--r-- | gcc/toplev.c | 2 |
3 files changed, 10 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b59b15e..e08f5e8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-04-15 David Edelsohn <edelsohn@gnu.org> + + * 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 <kenner@vlsi1.ultra.nyu.edu> * Makefile.in (ggc-page.o): Now includes toplev.h. diff --git a/gcc/haifa-sched.c b/gcc/haifa-sched.c index cb04661..eae9480 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 e90f994e..6d8336d 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 <file> Base name to be used for dumps from specific passes\n"); #if defined INSN_SCHEDULING - printf (" -sched-verbose=<number> Set the verbosity level of the scheduler\n"); + printf (" -fsched-verbose=<number> Set the verbosity level of the scheduler\n"); #endif printf (" --help Display this information\n"); |