diff --git a/gcc/ChangeLog b/gcc/ChangeLog index adff72c1feed..26679f2e10bb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Sun Mar 28 15:27:26 1999 Jeffrey A Law (law@cygnus.com) + + * reload1.c (reload): Remove accidental code duplication. + Sun Mar 28 12:22:12 1999 Robert Lipe (robertlipe@usa.net) * i386/sysv5.h: New file to describe UnixWare7/SVR5. diff --git a/gcc/reload1.c b/gcc/reload1.c index c3d4e132c692..3f5e097cba31 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -1176,20 +1176,6 @@ reload (first, global, dumpfile) cleanup_subreg_operands (insn); } - /* If we are doing stack checking, give a warning if this function's - frame size is larger than we expect. */ - if (flag_stack_check && ! STACK_CHECK_BUILTIN) - { - HOST_WIDE_INT size = get_frame_size () + STACK_CHECK_FIXED_FRAME_SIZE; - - for (i = 0; i < FIRST_PSEUDO_REGISTER; i++) - if (regs_ever_live[i] && ! fixed_regs[i] && call_used_regs[i]) - size += UNITS_PER_WORD; - - if (size > STACK_CHECK_MAX_FRAME_SIZE) - warning ("frame size too large for reliable stack checking"); - } - /* If we are doing stack checking, give a warning if this function's frame size is larger than we expect. */ if (flag_stack_check && ! STACK_CHECK_BUILTIN)