summaryrefslogtreecommitdiff
path: root/gcc/gcse.c
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>2000-10-20 19:17:41 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>2000-10-20 19:17:41 +0000
commitfb1f4ef4a3b6cfb5594b55a32000df32daf50c63 (patch)
tree94e75190b5307250343c628edde90128fa946240 /gcc/gcse.c
parent4610756490479e26cece7e8b2bace4c69ef379f4 (diff)
downloadgcc-fb1f4ef4a3b6cfb5594b55a32000df32daf50c63.tar.gz
* gcse.c (set_hash_table_size): Now unsigned.
* sdbout.c (template_name_p): Add "const" to avoid warnings. (sdbout_record_type_name, plain_type_1, sdbout_symbol): Likewise. (sdbout_one_type, sdbout_parms, sdbout_reg_parms): Likewise. (sdbout_end_epilogue): Remove variable NAME. * system.h (getopt): Add default definition. * config/alpha/alpha.c (print_operand): Don't continue processing after issuing error. (summarize_insn): Avoid use of UL in constant. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36974 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r--gcc/gcse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcse.c b/gcc/gcse.c
index 36ca4033f93..1f0aa95ac73 100644
--- a/gcc/gcse.c
+++ b/gcc/gcse.c
@@ -372,7 +372,7 @@ static unsigned int expr_hash_table_size;
static struct expr **expr_hash_table;
/* Total size of the copy propagation hash table, in elements. */
-static int set_hash_table_size;
+static unsigned int set_hash_table_size;
/* The table itself.
This is an array of `set_hash_table_size' elements. */