mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-09 04:26:42 +08:00
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
This commit is contained in:
parent
6b7ef0e0be
commit
6d649d2678
@ -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,
|
||||
|
@ -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;
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -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
|
||||
|
@ -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();
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user