Commit 102870fb by Jim Wilson Committed by Jim Wilson

Handle frame sizes larger than int.

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

From-SVN: r37809
parent a22add72
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.
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment