aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcse.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>2000-10-20 19:17:41 +0000
committerRichard Kenner <kenner@gcc.gnu.org>2000-10-20 15:17:41 -0400
commitebb13e7eb8636e9ac163e364d72015519ba931f6 (patch)
tree94e75190b5307250343c628edde90128fa946240 /gcc/gcse.c
parent1468899dc245d342fe730ebf13ba57fb9cfb64a5 (diff)
downloadgcc-ebb13e7eb8636e9ac163e364d72015519ba931f6.zip
gcc-ebb13e7eb8636e9ac163e364d72015519ba931f6.tar.gz
gcc-ebb13e7eb8636e9ac163e364d72015519ba931f6.tar.bz2
gcse.c (set_hash_table_size): Now unsigned.
* 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. From-SVN: r36974
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 36ca403..1f0aa95 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. */