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/config | |
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/config')
-rw-r--r-- | gcc/config/i386/i386.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 689b3af5..3c31c49 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -559,7 +559,7 @@ static int ix86_split_to_parts PARAMS ((rtx, rtx *, enum machine_mode)); static int ix86_safe_length_prefix PARAMS ((rtx)); static int ix86_nsaved_regs PARAMS((void)); static void ix86_emit_save_regs PARAMS((void)); -static void ix86_emit_restore_regs_using_mov PARAMS ((rtx, int, bool)); +static void ix86_emit_restore_regs_using_mov PARAMS ((rtx, int, int)); static void ix86_emit_epilogue_esp_adjustment PARAMS((int)); static void ix86_set_move_mem_attrs_1 PARAMS ((rtx, rtx, rtx, rtx, rtx)); static void ix86_sched_reorder_pentium PARAMS((rtx *, rtx *)); @@ -599,7 +599,7 @@ static int ix86_fp_comparison_arithmetics_cost PARAMS ((enum rtx_code code)); static int ix86_fp_comparison_fcomi_cost PARAMS ((enum rtx_code code)); static int ix86_fp_comparison_sahf_cost PARAMS ((enum rtx_code code)); static int ix86_fp_comparison_cost PARAMS ((enum rtx_code code)); -static int ix86_save_reg PARAMS ((int, bool)); +static int ix86_save_reg PARAMS ((int, int)); static void ix86_compute_frame_layout PARAMS ((struct ix86_frame *)); /* Sometimes certain combinations of command options do not make @@ -2268,7 +2268,7 @@ gen_push (arg) static int ix86_save_reg (regno, maybe_eh_return) int regno; - bool maybe_eh_return; + int maybe_eh_return; { if (flag_pic && ! TARGET_64BIT @@ -2573,7 +2573,7 @@ static void ix86_emit_restore_regs_using_mov (pointer, offset, maybe_eh_return) rtx pointer; int offset; - bool maybe_eh_return; + int maybe_eh_return; { int regno; |