]> gcc.gnu.org Git - gcc.git/commitdiff
builtins.def: Fix typo and improve grammar.
authorRoger Sayle <roger@eyesopen.com>
Sun, 9 Mar 2003 15:22:56 +0000 (15:22 +0000)
committerRoger Sayle <sayle@gcc.gnu.org>
Sun, 9 Mar 2003 15:22:56 +0000 (15:22 +0000)
* builtins.def: Fix typo and improve grammar.
* loop-unroll.c (decide_peel_completely): Tidy log message.

From-SVN: r64030

gcc/ChangeLog
gcc/builtins.def
gcc/loop-unroll.c

index f82c118d4a109db57570d44bba975f1741efe514..c2545b7edf46e49411bedc52a0c279d0bb4c54db 100644 (file)
@@ -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.
index 48fd19762ae1ab4ef9ea19d30f8cb52cc05a105d..f0df8bbc5c2712b559609cc06247b8da6449f44e 100644 (file)
@@ -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
index e39bdbcbffb8fc694dfc28f6309df86f1a33cade..2535cf6b24c0ea9363d1bd498b8673e718ab98fc 100644 (file)
@@ -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;
     }
This page took 2.991796 seconds and 5 git commands to generate.