diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-04 14:36:39 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-04 14:36:39 +0000 |
commit | 229e4325e837a750c36b1b51fb89cbd1099a55d6 (patch) | |
tree | ba85310e2284133248625e5c9e0d515894ec9cf4 /gcc/tlink.c | |
parent | 2bb76a456925fa6ed6d32b76154b64843b0dd1ed (diff) | |
download | gcc-229e4325e837a750c36b1b51fb89cbd1099a55d6.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41829 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tlink.c')
-rw-r--r-- | gcc/tlink.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tlink.c b/gcc/tlink.c index 1b797e104a4..8b8ca0c4698 100644 --- a/gcc/tlink.c +++ b/gcc/tlink.c @@ -72,7 +72,7 @@ static struct hash_entry * symbol_hash_newfunc PARAMS ((struct hash_entry *, struct hash_table *, hash_table_key)); static struct symbol_hash_entry * symbol_hash_lookup PARAMS ((const char *, - bool)); + int)); static struct hash_entry * file_hash_newfunc PARAMS ((struct hash_entry *, struct hash_table *, hash_table_key)); @@ -81,7 +81,7 @@ static struct hash_entry * demangled_hash_newfunc PARAMS ((struct hash_entry *, struct hash_table *, hash_table_key)); static struct demangled_hash_entry * - demangled_hash_lookup PARAMS ((const char *, bool)); + demangled_hash_lookup PARAMS ((const char *, int)); static void symbol_push PARAMS ((symbol *)); static symbol * symbol_pop PARAMS ((void)); static void file_push PARAMS ((file *)); @@ -129,7 +129,7 @@ symbol_hash_newfunc (entry, table, string) static struct symbol_hash_entry * symbol_hash_lookup (string, create) const char *string; - bool create; + int create; { return ((struct symbol_hash_entry *) hash_lookup (&symbol_table, (const hash_table_key) string, @@ -201,7 +201,7 @@ demangled_hash_newfunc (entry, table, string) static struct demangled_hash_entry * demangled_hash_lookup (string, create) const char *string; - bool create; + int create; { return ((struct demangled_hash_entry *) hash_lookup (&demangled_table, (const hash_table_key) string, |