Commit 6d649d26 by Finn Hakansson Committed by Jeff Law

combine.c (simplify_shift_const): Remove extra semicolon.

        * 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
parent 6b7ef0e0
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) Thu Sep 2 00:06:43 1999 Jeffrey A Law (law@cygnus.com)
* varasm.c (mark_constant_pool): When marking indirect references, * varasm.c (mark_constant_pool): When marking indirect references,
......
...@@ -8556,7 +8556,7 @@ simplify_shift_const (x, code, result_mode, varop, count) ...@@ -8556,7 +8556,7 @@ simplify_shift_const (x, code, result_mode, varop, count)
&& exact_log2 (INTVAL (XEXP (varop, 1))) >= 0) && exact_log2 (INTVAL (XEXP (varop, 1))) >= 0)
{ {
varop = gen_binary (ASHIFT, GET_MODE (varop), XEXP (varop, 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; continue;
} }
break; break;
......
...@@ -4088,7 +4088,7 @@ remove_AT (die, attr_kind) ...@@ -4088,7 +4088,7 @@ remove_AT (die, attr_kind)
register enum dwarf_attribute attr_kind; register enum dwarf_attribute attr_kind;
{ {
register dw_attr_ref a; register dw_attr_ref a;
register dw_attr_ref removed = NULL;; register dw_attr_ref removed = NULL;
if (die != NULL) if (die != NULL)
{ {
......
...@@ -2467,7 +2467,7 @@ expand_mult (mode, op0, op1, target, unsignedp) ...@@ -2467,7 +2467,7 @@ expand_mult (mode, op0, op1, target, unsignedp)
break; break;
default: default:
abort ();; abort ();
} }
/* Write a REG_EQUAL note on the last insn so that we can cse /* Write a REG_EQUAL note on the last insn so that we can cse
......
...@@ -569,7 +569,7 @@ create_program_flow_graph (bptr) ...@@ -569,7 +569,7 @@ create_program_flow_graph (bptr)
for (arcptr = bb_graph[i].succ; arcptr; arcptr = arcptr->succ_next) for (arcptr = bb_graph[i].succ; arcptr; arcptr = arcptr->succ_next)
if (! arcptr->on_tree) if (! arcptr->on_tree)
{ {
long tmp_count = 0;; long tmp_count = 0;
if (da_file && __read_long (&tmp_count, da_file, 8)) if (da_file && __read_long (&tmp_count, da_file, 8))
abort(); abort();
......
...@@ -1004,7 +1004,7 @@ mostly_true_jump (jump_insn, condition) ...@@ -1004,7 +1004,7 @@ mostly_true_jump (jump_insn, condition)
return (target_label == 0 || INSN_UID (jump_insn) > max_uid return (target_label == 0 || INSN_UID (jump_insn) > max_uid
|| INSN_UID (target_label) > max_uid || INSN_UID (target_label) > max_uid
|| (uid_to_ruid[INSN_UID (jump_insn)] || (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 /* Return the condition under which INSN will branch to TARGET. If TARGET
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment