* reload1.c (reload): Remove accidental code duplication.

From-SVN: r26042
This commit is contained in:
Jeffrey A Law 1999-03-28 14:33:50 +00:00 committed by Jeff Law
parent 41bc80f4be
commit 0a76126bfe
2 changed files with 4 additions and 14 deletions

View File

@ -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.

View File

@ -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)