From 97b330ca3e32dc8619baac1c75cdf0feb101cbf6 Mon Sep 17 00:00:00 2001 From: aj Date: Tue, 10 Jul 2001 10:38:10 +0000 Subject: 2001-07-10 Jan van Male * regmove.c (replace_in_call_usage): Fix warnings. * sched-deps.c (add_dependence): Fix warnings. * simplify-rtx.c (simplify_subreg): Likewise. Return NULL_RTX instead of NULL. * reg-stack.c (emit_swap_insn): Eliminate warnings. (subst_asm_stack_regs): Likewise. * combine.c (num_sign_bit_copies): Cast bitwidth to int to avoid warnings. * dwarf2out.c (output_call_frame_info): Declare i as int. (build_abbrev_table): Declare n_alloc as int. (dwarf2out_finish): Initialize die. * except.c: Declare sjlj_funcdef_number as unsigned. (connect_post_landing_pads): Declare j as unsigned. (convert_to_eh_region_ranges): Initialize call_site. (output_function_exception_table): Initialize tt_format_size. * expr.c (move_by_pieces_1): Initialize to1. (store_constructor): Initialize minelt and maxelt. * flow.c (mark_regs_live_at_end): Declare i as unsigned. * function.c (instantiate_decls): Avoid signed/unsigned warning. * c-decl.c (combine_parm_decls): Unused, remove. * c-tree.h: Remove prototype for combine_parm_decls. * reload.c (push_reload): Fix warning. (regno_clobbered_p): Likewise. * reload1.c (replace_pseudos_in_call_usage): Likewise. (reload_combine): Likewise. * bitmap.c: Rename bitmap_zero to bitmap_zero_bits to fix warnings. * bitmap.h: Rename bitmap_zero to bitmap_zero_bits to fix warnings. * bitmap.c (bitmap_operation): Change user. * bitmap.h (EXECUTE_IF_AND_COMPL_IN_BITMAP): Likewise. For cp/: 2001-07-10 Jan van Male * call.c (build_op_delete_call): Initialize fn. (convert_like_real): Delete conditional. (joust): Initialize *w and *l. * class.c: Add prototype for binfo_ctor_vtable. (get_primary_binfo): Initialize result. * init.c (build_java_class_ref): Initialize name. * typeck.c (unary_complex_lvalue): Do not duplicate the argument to modify, pre-, or post-increment when used as an lvalue and when the argument has side-effects. For ch/: 2001-07-10 Jan van Male * ch-tree.h: Remove prototype for combine_parm_decls, unused function. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43893 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/reload1.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gcc/reload1.c') diff --git a/gcc/reload1.c b/gcc/reload1.c index c6a5c238548..1423e6ed0d7 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -601,7 +601,7 @@ replace_pseudos_in_call_usage (loc, mem_mode, usage) code = GET_CODE (x); if (code == REG) { - int regno = REGNO (x); + unsigned int regno = REGNO (x); if (regno < FIRST_PSEUDO_REGISTER) return; @@ -8585,7 +8585,8 @@ static void reload_combine () { rtx insn, set; - int first_index_reg = -1, last_index_reg; + int first_index_reg = -1; + int last_index_reg = 0; int i; unsigned int r; int last_label_ruid; @@ -8816,7 +8817,7 @@ reload_combine () rtx usage_rtx = XEXP (XEXP (link, 0), 0); if (GET_CODE (usage_rtx) == REG) { - int i; + unsigned int i; unsigned int start_reg = REGNO (usage_rtx); unsigned int num_regs = HARD_REGNO_NREGS (start_reg, GET_MODE (usage_rtx)); -- cgit v1.2.1