diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-03-08 01:38:27 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-03-08 01:38:27 +0000 |
commit | 3dc575ffdbbf9f76f2f8458ccb351efd5d67a96b (patch) | |
tree | ac6eaf9720b1013a5b3dc4f6abec3d7ed67daa1c /gcc/loop-unroll.c | |
parent | 89d11511b0e8ce513e042c75131f6e15529ddf24 (diff) | |
download | gcc-3dc575ffdbbf9f76f2f8458ccb351efd5d67a96b.zip gcc-3dc575ffdbbf9f76f2f8458ccb351efd5d67a96b.tar.gz gcc-3dc575ffdbbf9f76f2f8458ccb351efd5d67a96b.tar.bz2 |
calls.c: Fix comment formatting.
* calls.c: Fix comment formatting.
* cfgloopanal.c: Likewise.
* cfgloopmanip.c: Likewise.
* combine.c: Likewise.
* dwarf2out.c: Likewise.
* ggc-common.c: Likewise.
* langhooks.c: Likewise.
* loop-unroll.c: Likewise.
* loop.c: Likewise.
* ra-build.c: Likewise.
* sbitmap.c: Likewise.
* toplev.c: Likewise.
From-SVN: r63966
Diffstat (limited to 'gcc/loop-unroll.c')
-rw-r--r-- | gcc/loop-unroll.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/loop-unroll.c b/gcc/loop-unroll.c index 6f945a2..55899a9 100644 --- a/gcc/loop-unroll.c +++ b/gcc/loop-unroll.c @@ -346,7 +346,7 @@ decide_peel_completely (loops, loop, flags) return; } - /* npeel = number of iterations to peel. */ + /* npeel = number of iterations to peel. */ npeel = PARAM_VALUE (PARAM_MAX_COMPLETELY_PEELED_INSNS) / loop->ninsns; if (npeel > (unsigned) PARAM_VALUE (PARAM_MAX_COMPLETELY_PEEL_TIMES)) npeel = PARAM_VALUE (PARAM_MAX_COMPLETELY_PEEL_TIMES); @@ -974,7 +974,7 @@ decide_peel_simple (loops, loop, flags) if (rtl_dump_file) fprintf (rtl_dump_file, ";; Considering simply peeling loop\n"); - /* npeel = number of iterations to peel. */ + /* npeel = number of iterations to peel. */ npeel = PARAM_VALUE (PARAM_MAX_PEELED_INSNS) / loop->ninsns; if (npeel > (unsigned) PARAM_VALUE (PARAM_MAX_PEEL_TIMES)) npeel = PARAM_VALUE (PARAM_MAX_PEEL_TIMES); |