Commit 3b71623b by Richard Henderson Committed by Richard Henderson

function.c (assign_stack_local_1): Allocate from function->x_frame_offset, not frame_offset.

        * function.c (assign_stack_local_1): Allocate from
        function->x_frame_offset, not frame_offset.

From-SVN: r29248
parent f00caf79
Thu Sep 9 16:03:06 1999 Richard Henderson <rth@cygnus.com>
* function.c (assign_stack_local_1): Allocate from
function->x_frame_offset, not frame_offset.
Thu Sep 9 14:36:31 1999 Mark Mitchell <mark@codesourcery.com>
* ggc.h (lang_cleanup_tree): Remove.
......
......@@ -518,7 +518,7 @@ assign_stack_local_1 (mode, size, align, function)
+ STARTING_FRAME_OFFSET));
else
addr = plus_constant (virtual_stack_vars_rtx,
frame_offset + bigend_correction);
function->x_frame_offset + bigend_correction);
#ifndef FRAME_GROWS_DOWNWARD
function->x_frame_offset += size;
......
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