aboutsummaryrefslogtreecommitdiff
path: root/gcc/hash.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2001-05-04 14:36:39 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2001-05-04 14:36:39 +0000
commit37a580360c3df196e8dc6e075ba1bd24d83bbefc (patch)
treeba85310e2284133248625e5c9e0d515894ec9cf4 /gcc/hash.c
parente7a4892c2053d5e7ac33639a7a44f7990cd3cafa (diff)
downloadgcc-37a580360c3df196e8dc6e075ba1bd24d83bbefc.zip
gcc-37a580360c3df196e8dc6e075ba1bd24d83bbefc.tar.gz
gcc-37a580360c3df196e8dc6e075ba1bd24d83bbefc.tar.bz2
i386.c (ix86_emit_restore_regs_using_mov, [...]): Change `bool' parameter to `int'.
* i386.c (ix86_emit_restore_regs_using_mov, ix86_save_reg): Change `bool' parameter to `int'. * hash.c (hash_lookup): Likewise. * hash.h (hash_lookup): Likewise. * tlink.c (symbol_hash_lookup, demangled_hash_lookup): Likewise. From-SVN: r41829
Diffstat (limited to 'gcc/hash.c')
-rw-r--r--gcc/hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/hash.c b/gcc/hash.c
index 1b2cc7c..1cf6b68 100644
--- a/gcc/hash.c
+++ b/gcc/hash.c
@@ -87,7 +87,7 @@ struct hash_entry *
hash_lookup (table, key, create, copy)
struct hash_table *table;
hash_table_key key;
- bool create;
+ int create;
hash_table_key (*copy) PARAMS ((struct obstack* memory,
hash_table_key key));
{