summaryrefslogtreecommitdiff
path: root/gcc/haifa-sched.c
diff options
context:
space:
mode:
authordje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>2000-04-15 22:27:59 +0000
committerdje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>2000-04-15 22:27:59 +0000
commit5c69f8a7a7a36ea68e0ba449313eb53b3ba39802 (patch)
treeec2983322f92360d7678e34a952e8b1deace95db /gcc/haifa-sched.c
parenta70507e4bc0a39532a9a408b518727adb70f4b66 (diff)
downloadgcc-5c69f8a7a7a36ea68e0ba449313eb53b3ba39802.tar.gz
* toplev.c (display_help): Prefix "f" to "sched-verbose=".
* haifa-sched.c: Update -fsched-verbose comments to use "=". git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33172 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/haifa-sched.c')
-rw-r--r--gcc/haifa-sched.c8
1 files changed, 4 insertions, 4 deletions
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;