diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-12-24 08:30:34 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-12-24 08:30:34 +0000 |
commit | 14b493d64dd504f79cd702bba4b8bae678740af9 (patch) | |
tree | f527a7be9da17e50c26bf10cb61c24606588c777 /gcc/toplev.c | |
parent | 02aef83470d501c4fd44035ebc41f6b9449e3288 (diff) | |
download | gcc-14b493d64dd504f79cd702bba4b8bae678740af9.zip gcc-14b493d64dd504f79cd702bba4b8bae678740af9.tar.gz gcc-14b493d64dd504f79cd702bba4b8bae678740af9.tar.bz2 |
regmove.c: Fix comment typos.
* regmove.c: Fix comment typos.
* reload.c: Likewise.
* reload1.c: Likewise.
* resource.c: Likewise.
* rtl.def: Likewise.
* rtl.h: Likewise.
* rtlanal.c: Likewise.
* sched-deps.c: Likewise.
* sched-rgn.c: Likewise.
* sibcall.c: Likewise.
* simplify-rtx.c: Likewise.
* ssa-ccp.c: Likewise.
* ssa.c: Likewise.
* stmt.c: Likewise.
* stor-layout.c: Likewise.
* system.h: Likewise.
* tlink.c: Likewise.
* toplev.c: Likewise.
* tracer.c: Likewise.
* tree-inline.c: Likewise.
* tree.c: Likewise.
* tree.h: Likewise.
* unroll.c: Likewise.
* varasm.c: Likewise.
From-SVN: r60473
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 6d1a30d..ccc061f 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -750,7 +750,7 @@ int flag_schedule_insns_after_reload = 0; /* The following flags have effect only for scheduling before register allocation: - flag_schedule_interblock means schedule insns accross basic blocks. + flag_schedule_interblock means schedule insns across basic blocks. flag_schedule_speculative means allow speculative motion of non-load insns. flag_schedule_speculative_load means allow speculative motion of some load insns. @@ -2973,11 +2973,11 @@ rest_of_compilation (decl) | (flag_thread_jumps ? CLEANUP_THREADING : 0)); /* It may make more sense to mark constant functions after dead code is - eliminated by life_analyzis, but we need to do it early, as -fprofile-arcs + eliminated by life_analysis, but we need to do it early, as -fprofile-arcs may insert code making function non-constant, but we still must consider it as constant, otherwise -fbranch-probabilities will not read data back. - life_analyzis rarely eliminates modification of external memory. + life_analysis rarely eliminates modification of external memory. */ if (optimize) mark_constant_function (); @@ -3478,7 +3478,7 @@ rest_of_compilation (decl) open_dump_file (DFI_bbro, decl); /* Last attempt to optimize CFG, as scheduling, peepholing and insn - splitting possibly introduced more crossjumping oppurtuntities. + splitting possibly introduced more crossjumping opportunities. Except that we can't actually run crossjumping without running another DCE pass, which we can't do after reg-stack. */ cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_POST_REGSTACK |