diff options
author | Richard Henderson <rth@cygnus.com> | 1999-09-09 16:04:12 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-09-09 16:04:12 -0700 |
commit | 3b71623bf39b0934ee76d0223130de7dd6a44509 (patch) | |
tree | 03dc204e66fe6a9c05285e28d2cb463833bc65f9 /gcc/function.c | |
parent | f00caf7903f1d9fff1d1f66560a353dd21e1c199 (diff) | |
download | gcc-3b71623bf39b0934ee76d0223130de7dd6a44509.zip gcc-3b71623bf39b0934ee76d0223130de7dd6a44509.tar.gz gcc-3b71623bf39b0934ee76d0223130de7dd6a44509.tar.bz2 |
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
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c index b6e4f87..213cf63 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -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; |