combine.c (simplify_shift_const): Remove extra semicolon.
authorFinn Hakansson <finn@axis.com>
Thu, 2 Sep 1999 06:47:15 +0000 (06:47 +0000)
committerJeff Law <law@gcc.gnu.org>
Thu, 2 Sep 1999 06:47:15 +0000 (00:47 -0600)
        * combine.c (simplify_shift_const): Remove extra semicolon.
        * dwarf2out.c (remove_AT): Likewise.
        * expmed.c (expand_mult): Likewise.
        * gcov.c (create_program_flow_graph): Likewise.
        * reorg.c (mostly_true_jump): Likewise.

From-SVN: r29050

gcc/ChangeLog
gcc/combine.c
gcc/dwarf2out.c
gcc/expmed.c
gcc/gcov.c
gcc/reorg.c

index e8a69a682b7018915346217a90ec03ed0cc75046..72325f34e0d559fa3b321f951c95b8c38ffb52ec 100644 (file)
@@ -1,3 +1,11 @@
+Thu Sep  2 00:43:59 1999  Finn Hakansson  <finn@axis.com>
+
+       * combine.c (simplify_shift_const): Remove extra semicolon.
+       * dwarf2out.c (remove_AT): Likewise.
+       * expmed.c (expand_mult): Likewise.
+       * gcov.c (create_program_flow_graph): Likewise.
+       * reorg.c (mostly_true_jump): Likewise.
+
 Thu Sep  2 00:06:43 1999  Jeffrey A Law  (law@cygnus.com)
 
        * varasm.c (mark_constant_pool): When marking indirect references,
index 9bedd6118f95bde49ad1e21bfb45e304a61e2f9b..6886ba7179d224eb03b7e181adbf19aeaa643318 100644 (file)
@@ -8556,7 +8556,7 @@ simplify_shift_const (x, code, result_mode, varop, count)
              && exact_log2 (INTVAL (XEXP (varop, 1))) >= 0)
            {
              varop = gen_binary (ASHIFT, GET_MODE (varop), XEXP (varop, 0),
-                                 GEN_INT (exact_log2 (INTVAL (XEXP (varop, 1)))));;
+                                 GEN_INT (exact_log2 (INTVAL (XEXP (varop, 1)))));
              continue;
            }
          break;
index af08bec298f8199be89941c06cfb739e79a3a545..9fb2d8829415d19adc090fafbef5a31a0f9482f4 100644 (file)
@@ -4088,7 +4088,7 @@ remove_AT (die, attr_kind)
      register enum dwarf_attribute attr_kind;
 {
   register dw_attr_ref a;
-  register dw_attr_ref removed = NULL;;
+  register dw_attr_ref removed = NULL;
 
   if (die != NULL)
     {
index b7e35af95ff8d3b3f95bfeafb6192468f88877b0..1ec710d26f21a628e41e9ba31ab79357b4029057 100644 (file)
@@ -2467,7 +2467,7 @@ expand_mult (mode, op0, op1, target, unsignedp)
                  break;
 
                default:
-                 abort ();;
+                 abort ();
                }
 
              /* Write a REG_EQUAL note on the last insn so that we can cse
index 629aa0239853a33d9a28497cad58ccd7b5749bce..cdd8c0d229a7ba4667c05c88663826a430784d36 100644 (file)
@@ -569,7 +569,7 @@ create_program_flow_graph (bptr)
     for (arcptr = bb_graph[i].succ; arcptr; arcptr = arcptr->succ_next)
       if (! arcptr->on_tree)
        {
-         long tmp_count = 0;;
+         long tmp_count = 0;
          if (da_file && __read_long (&tmp_count, da_file, 8))
            abort();
 
index 43203350efb30db741307472caac8968549406ac..2db04a169b250c32312a13b2670053499c52cabb 100644 (file)
@@ -1004,7 +1004,7 @@ mostly_true_jump (jump_insn, condition)
   return (target_label == 0 || INSN_UID (jump_insn) > max_uid
          || INSN_UID (target_label) > max_uid
          || (uid_to_ruid[INSN_UID (jump_insn)]
-             > uid_to_ruid[INSN_UID (target_label)]));;
+             > uid_to_ruid[INSN_UID (target_label)]));
 }
 
 /* Return the condition under which INSN will branch to TARGET.  If TARGET