gcse.c (hash_string_1): Add prototype.
authorAlexandre Oliva <aoliva@redhat.com>
Tue, 5 Sep 2000 06:04:09 +0000 (06:04 +0000)
committerAlexandre Oliva <aoliva@gcc.gnu.org>
Tue, 5 Sep 2000 06:04:09 +0000 (06:04 +0000)
* gcse.c (hash_string_1): Add prototype.
* cse.c (canon_hash_string): Likewise.

From-SVN: r36154

gcc/ChangeLog
gcc/cse.c
gcc/gcse.c

index 674253d092aa23a2069d86862c9f20edded89a02..702fe3e3163661fa79c785dd989425362d83d8e5 100644 (file)
@@ -1,3 +1,8 @@
+2000-09-05  Alexandre Oliva  <aoliva@redhat.com>
+
+       * gcse.c (hash_string_1): Add prototype.
+       * cse.c (canon_hash_string): Likewise.
+
 2000-09-04  Craig Newell  <CraigN@ieee.org>
 
        * gcc.c: Undefine "__WCHAR_TYPE__" before redefining it.
index 2862ac2ddeec8f4e23fd0fd97c91f1deb4d41557..93cfb97ecef26ed90bd52b0c1cf728b25d25f6a9 100644 (file)
--- a/gcc/cse.c
+++ b/gcc/cse.c
@@ -668,6 +668,7 @@ static void invalidate_memory       PARAMS ((void));
 static void invalidate_for_call        PARAMS ((void));
 static rtx use_related_value   PARAMS ((rtx, struct table_elt *));
 static unsigned canon_hash     PARAMS ((rtx, enum machine_mode));
+static unsigned canon_hash_string PARAMS ((const char *));
 static unsigned safe_hash      PARAMS ((rtx, enum machine_mode));
 static int exp_equiv_p         PARAMS ((rtx, rtx, int, int));
 static rtx canon_reg           PARAMS ((rtx, rtx));
index c925a5a5d127c0f1a92f3acc29fc4c9c6d5cf17b..d32ddeb063d86825f2e740b350c05b606b21d9d7 100644 (file)
@@ -549,6 +549,7 @@ static void insert_expr_in_table PARAMS ((rtx, enum machine_mode, rtx,
 static void insert_set_in_table PARAMS ((rtx, rtx));
 static unsigned int hash_expr  PARAMS ((rtx, enum machine_mode, int *, int));
 static unsigned int hash_expr_1 PARAMS ((rtx, enum machine_mode, int *));
+static unsigned int hash_string_1 PARAMS ((const char *));
 static unsigned int hash_set   PARAMS ((int, int));
 static int expr_equiv_p                PARAMS ((rtx, rtx));
 static void record_last_reg_set_info PARAMS ((rtx, int));