Handle frame sizes larger than int.

* reload1.c (reload): Use HOST_WIDE_INT for old_frame_size.

From-SVN: r37809
This commit is contained in:
Jim Wilson 2000-11-28 03:17:22 +00:00 committed by Jim Wilson
parent a22add7268
commit 102870fb8f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2000-11-27 Jim Wilson <wilson@redhat.com>
* reload1.c (reload): Use HOST_WIDE_INT for old_frame_size.
2000-11-27 Matthias Klose <doko@cs.tu-berlin.de>
* extend.texi (Nested Functions): Update URL of Usenix paper.

View File

@ -1015,7 +1015,7 @@ reload (first, global)
if (insns_need_reload != 0 || something_needs_elimination
|| something_needs_operands_changed)
{
int old_frame_size = get_frame_size ();
HOST_WIDE_INT old_frame_size = get_frame_size ();
reload_as_needed (global);