diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/builtins.def | 3 | ||||
-rw-r--r-- | gcc/loop-unroll.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f82c118..c2545b7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-03-09 Roger Sayle <roger@eyesopen.com> + + * builtins.def: Fix typo and improve grammar. + * loop-unroll.c (decide_peel_completely): Tidy log message. + 2003-03-09 Kazu Hirata <kazu@cs.umass.edu> * config/h8300/h8300.md (*tstsi_upper_bit): New. diff --git a/gcc/builtins.def b/gcc/builtins.def index 48fd197..f0df8bb 100644 --- a/gcc/builtins.def +++ b/gcc/builtins.def @@ -59,7 +59,8 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA compiler. For instance C90 reserves floorf function, but does not define it's meaning. When user uses floorf we may assume that the floorf has the meaning we expect, but we can't produce floorf by - simplifing floor((double)float) since runtime don't need to implement it. */ + simplifying floor((double)float) since the runtime need not implement + it. */ /* A GCC builtin (like __builtin_saveregs) is provided by the compiler, but does not correspond to a function in the standard diff --git a/gcc/loop-unroll.c b/gcc/loop-unroll.c index e39bdbc..2535cf6 100644 --- a/gcc/loop-unroll.c +++ b/gcc/loop-unroll.c @@ -377,7 +377,7 @@ decide_peel_completely (loops, loop, flags) { fprintf (rtl_dump_file, ";; Not peeling loop completely, rolls too much ("); fprintf (rtl_dump_file, HOST_WIDEST_INT_PRINT_DEC,(HOST_WIDEST_INT) loop->desc.niter); - fprintf (rtl_dump_file, "iterations > %d [maximum peelings])\n", npeel); + fprintf (rtl_dump_file, " iterations > %d [maximum peelings])\n", npeel); } return; } |