diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-05-04 14:36:39 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-05-04 14:36:39 +0000 |
commit | 37a580360c3df196e8dc6e075ba1bd24d83bbefc (patch) | |
tree | ba85310e2284133248625e5c9e0d515894ec9cf4 /gcc/hash.c | |
parent | e7a4892c2053d5e7ac33639a7a44f7990cd3cafa (diff) | |
download | gcc-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); { |