OSDN Git Service

* global.c, tree-ssa-copy.c, tree-ssa-loop-ivopts.c,
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 14 Nov 2004 23:35:03 +0000 (23:35 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 14 Nov 2004 23:35:03 +0000 (23:35 +0000)
value-prof.c: Fix comment typos.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90638 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/global.c
gcc/tree-ssa-copy.c
gcc/tree-ssa-loop-ivopts.c
gcc/value-prof.c

index e026d6a..e9333a3 100644 (file)
@@ -1,6 +1,7 @@
 2004-11-14  Kazu Hirata  <kazu@cs.umass.edu>
 
-       * cfgrtl.c: Fix a comment typo.
+       * cfgrtl.c, global.c, tree-ssa-copy.c, tree-ssa-loop-ivopts.c,
+       value-prof.c: Fix comment typos.
 
 2004-11-14  Stan Shebs  <shebs@apple.com>
 
index 0cda11f..80caac9 100644 (file)
@@ -695,7 +695,7 @@ global_conflicts (void)
         since one hard reg can be used with various sizes.
         Therefore, we must require that all the hard regs
         implicitly live as part of a multi-word hard reg
-        are explicitly marked in basic_block_live_at_start.  */
+        be explicitly marked in basic_block_live_at_start.  */
 
       {
        regset old = b->global_live_at_start;
index e7f51c5..ff497a8 100644 (file)
@@ -44,7 +44,7 @@ Boston, MA 02111-1307, USA.  */
    annotations up-to-date.
 
    We require that for any copy operation where the RHS and LHS have
-   a non-null memory tag that the memory tag be the same.   It is OK
+   a non-null memory tag the memory tag be the same.   It is OK
    for one or both of the memory tags to be NULL.
 
    We also require tracking if a variable is dereferenced in a load or
index 867f72d..833cbf8 100644 (file)
@@ -1305,7 +1305,7 @@ idx_find_step (tree base, tree *idx, void *data)
     return false;
 
   /* If base is a component ref, require that the offset of the reference
-     is invariant.  */
+     be invariant.  */
   if (TREE_CODE (base) == COMPONENT_REF)
     {
       off = component_ref_field_offset (base);
index 6c6eed8..1663e64 100644 (file)
@@ -595,7 +595,7 @@ divmod_fixed_value_transform (rtx insn)
   histogram = XEXP (histogram, 1);
   all = INTVAL (XEXP (histogram, 0));
 
-  /* We require that count is at least half of all; this means
+  /* We require that count be at least half of all; this means
      that for the transformation to fire the value must be constant
      at least 50% of time (and 75% gives the guarantee of usage).  */
   if (!rtx_equal_p (op2, value) || 2 * count < all)
@@ -969,7 +969,7 @@ speculative_prefetching_transform (rtx insn)
   if (all < 4)
     return false;
 
-  /* We require that count is at least half of all; this means
+  /* We require that count be at least half of all; this means
      that for the transformation to fire the value must be constant
      at least 50% of time (and 75% gives the guarantee of usage).  */
   if (!rtx_equal_p (address, value) || 2 * count < all)