aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1999-02-25 09:29:10 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1999-02-25 09:29:10 +0000
commit592e5d21b1994911eee8c785222ac9ca217453e2 (patch)
treece6f1b24dde28196f7f5dd3ed77828bf46a71316
parentcfe84c181891d488bd983e5313fd83a21bfec297 (diff)
downloadgcc-592e5d21b1994911eee8c785222ac9ca217453e2.zip
gcc-592e5d21b1994911eee8c785222ac9ca217453e2.tar.gz
gcc-592e5d21b1994911eee8c785222ac9ca217453e2.tar.bz2
cse.c (dump_class): Make the function definition static to match the prototype.
* cse.c (dump_class): Make the function definition static to match the prototype. From-SVN: r25430
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/cse.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c0b00a5..3c66e69 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+Thu Feb 25 12:09:04 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * cse.c (dump_class): Make the function definition static to match
+ the prototype.
+
Wed Feb 24 17:47:28 1999 Jim Wilson <wilson@cygnus.com>
* dbxout.c (gstab.h): Use if CROSS_COMPILE.
diff --git a/gcc/cse.c b/gcc/cse.c
index 7fa8116..5693f2d 100644
--- a/gcc/cse.c
+++ b/gcc/cse.c
@@ -669,7 +669,7 @@ extern int rtx_equal_function_value_matters;
/* Dump the expressions in the equivalence class indicated by CLASSP.
This function is used only for debugging. */
-void
+static void
dump_class (classp)
struct table_elt *classp;
{