OSDN Git Service

* gcc.c-torture/execute/ieee/ieee.exp: Change sh-*-* to sh*-*-*.
[pf3gnuchains/gcc-fork.git] / gcc / gcse.c
index 9a46854..0119f67 100644 (file)
@@ -1798,9 +1798,9 @@ static int
 expr_equiv_p (x, y)
      rtx x, y;
 {
-  register int i, j;
-  register enum rtx_code code;
-  register const char *fmt;
+  int i, j;
+  enum rtx_code code;
+  const char *fmt;
 
   if (x == y)
     return 1;
@@ -2948,7 +2948,7 @@ compute_kill_rd ()
         Look at the linked list starting at reg_set_table[regx]
         For each setting of regx in the linked list, which is not in
             this block
-          Set the bit in `kill' corresponding to that insn.   */
+          Set the bit in `kill' corresponding to that insn.  */
   for (bb = 0; bb < n_basic_blocks; bb++)
     for (cuid = 0; cuid < max_cuid; cuid++)
       if (TEST_BIT (rd_gen[bb], cuid))
@@ -4931,7 +4931,7 @@ pre_delete ()
                   However, on the x86 some of the movXX patterns actually
                   contain clobbers of scratch regs.  This may cause the
                   insn created by validate_change to not match any pattern
-                  and thus cause validate_change to fail.   */
+                  and thus cause validate_change to fail.  */
                if (validate_change (insn, &SET_SRC (set),
                                     expr->reaching_reg, 0))
                  {
@@ -5424,7 +5424,7 @@ delete_null_pointer_checks (f)
       /* LAST_INSN is a conditional jump.  Get its condition.  */
       condition = get_condition (last_insn, &earliest);
 
-      /* If we were unable to get the condition, or it is not a equality
+      /* If we were unable to get the condition, or it is not an equality
         comparison against zero then there's nothing we can do.  */
       if (!condition
          || (GET_CODE (condition) != NE && GET_CODE (condition) != EQ)