aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe De Muyter <phdm@macqel.be>1999-11-28 08:47:57 +0100
committerJeff Law <law@gcc.gnu.org>1999-11-28 00:47:57 -0700
commit915b80ede3c45001d6d82d8c6c524d6e1a5f7d43 (patch)
tree55a76d4c24f55a89b1b34cf6b51188e2b78f8d8a
parent5c96cc3ba4b38fc6e067de48c593fde9f02f9755 (diff)
downloadgcc-915b80ede3c45001d6d82d8c6c524d6e1a5f7d43.zip
gcc-915b80ede3c45001d6d82d8c6c524d6e1a5f7d43.tar.gz
gcc-915b80ede3c45001d6d82d8c6c524d6e1a5f7d43.tar.bz2
integrate.c (mark_stores): Function definition made void, to match previous declaration.
* integrate.c (mark_stores): Function definition made void, to match previous declaration. * regclass.c (dump_regclass): Ditto. * Makefile.in (WARN_CFLAGS): Macro augmented by `-Wtraditional'. From-SVN: r30681
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/Makefile.in2
-rw-r--r--gcc/integrate.c2
-rw-r--r--gcc/regclass.c2
4 files changed, 10 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c448f0f..27dc939 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+Sun Nov 28 00:48:15 1999 Philippe De Muyter <phdm@macqel.be>
+
+ * integrate.c (mark_stores): Function definition made void, to match
+ previous declaration.
+ * regclass.c (dump_regclass): Ditto.
+ * Makefile.in (WARN_CFLAGS): Macro augmented by `-Wtraditional'.
+
Sat Nov 27 08:38:26 1999 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* expr.c (store_constructor): Use EXACT_DIV_EXPR when dividend is
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 9bebc17..17a6a2b 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -70,7 +70,7 @@ XCFLAGS =
TCFLAGS =
CFLAGS = -g @stage1_warn_cflags@
BOOT_CFLAGS = -O2 $(CFLAGS)
-WARN_CFLAGS = -W -Wall
+WARN_CFLAGS = -W -Wall -Wtraditional
# These exists to be overridden by the x-* and t-* files, respectively.
X_CFLAGS =
T_CFLAGS =
diff --git a/gcc/integrate.c b/gcc/integrate.c
index 5acc2d1..f825309 100644
--- a/gcc/integrate.c
+++ b/gcc/integrate.c
@@ -2353,7 +2353,7 @@ subst_constants (loc, insn, map, memonly)
/* Show that register modified no longer contain known constants. We are
called from note_stores with parts of the new insn. */
-void
+static void
mark_stores (dest, x, data)
rtx dest;
rtx x ATTRIBUTE_UNUSED;
diff --git a/gcc/regclass.c b/gcc/regclass.c
index cba13c48..ea608f8 100644
--- a/gcc/regclass.c
+++ b/gcc/regclass.c
@@ -772,7 +772,7 @@ regclass_init ()
}
/* Dump register costs. */
-void
+static void
dump_regclass (dump)
FILE *dump;
{