summaryrefslogtreecommitdiffstats
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog8
-rw-r--r--gcc/combine.c2
-rw-r--r--gcc/dwarf2out.c2
-rw-r--r--gcc/expmed.c2
-rw-r--r--gcc/gcov.c2
-rw-r--r--gcc/reorg.c2
6 files changed, 13 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index e8a69a682b7..72325f34e0d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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,
diff --git a/gcc/combine.c b/gcc/combine.c
index 9bedd6118f9..6886ba7179d 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -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;
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index af08bec298f..9fb2d882941 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -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)
{
diff --git a/gcc/expmed.c b/gcc/expmed.c
index b7e35af95ff..1ec710d26f2 100644
--- a/gcc/expmed.c
+++ b/gcc/expmed.c
@@ -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
diff --git a/gcc/gcov.c b/gcc/gcov.c
index 629aa023985..cdd8c0d229a 100644
--- a/gcc/gcov.c
+++ b/gcc/gcov.c
@@ -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();
diff --git a/gcc/reorg.c b/gcc/reorg.c
index 43203350efb..2db04a169b2 100644
--- a/gcc/reorg.c
+++ b/gcc/reorg.c
@@ -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
OpenPOWER on IntegriCloud