diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-07-05 15:17:36 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-07-05 15:17:36 +0000 |
commit | 4d6922ee327a1a5c4a6bbf974186a34355464df9 (patch) | |
tree | a2dfd9ba34b919d888653777fd366320e2e0fccd /gcc/loop-unroll.c | |
parent | f1c4bc4fccc9966ace2dc89e430e935448ec3f65 (diff) | |
download | gcc-4d6922ee327a1a5c4a6bbf974186a34355464df9.zip gcc-4d6922ee327a1a5c4a6bbf974186a34355464df9.tar.gz gcc-4d6922ee327a1a5c4a6bbf974186a34355464df9.tar.bz2 |
bt-load.c: Fix comment typos.
* bt-load.c: Fix comment typos.
* c-incpath.c: Likewise.
* cfg.c: Likewise.
* cfgcleanup.c: Likewise.
* cfgloop.h: Likewise.
* cfgloopmanip.c: Likewise.
* cfgrtl.c: Likewise.
* diagnostic.h: Likewise.
* dwarfout.c: Likewise.
* emit-rtl.c: Likewise.
* et-forest.c: Likewise.
* et-forest.h: Likewise.
* expr.c: Likewise.
* gcse.c: Likewise.
* genattr.c: Likewise.
* jump.c: Likewise.
* langhooks.h: Likewise.
* local-alloc.c: Likewise.
* loop-unroll.c: Likewise.
* loop-unswitch.c: Likewise.
* ra-build.c: Likewise.
* regclass.c: Likewise.
* regmove.c: Likewise.
* rtl.def: Likewise.
* rtlanal.c: Likewise.
* sched-ebb.c: Likewise.
* sched-rgn.c: Likewise.
* simplify-rtx.c: Likewise.
* ssa.c: Likewise.
* tracer.c: Likewise.
* tree.c: Likewise.
From-SVN: r68975
Diffstat (limited to 'gcc/loop-unroll.c')
-rw-r--r-- | gcc/loop-unroll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/loop-unroll.c b/gcc/loop-unroll.c index b8c035f..a0f253b 100644 --- a/gcc/loop-unroll.c +++ b/gcc/loop-unroll.c @@ -35,7 +35,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA optimizations on innermost loops (with single exception) because the impact on performance is greatest here, and we want to avoid unnecessary code size growth. The gain is caused by greater sequentiality - of code, better code to optimize for futher passes and in some cases + of code, better code to optimize for further passes and in some cases by fewer testings of exit conditions. The main problem is code growth, that impacts performance negatively due to effect of caches. |