diff options
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r-- | gcc/reload1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index 47d97fba477..7dc593f68ad 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -1012,7 +1012,7 @@ reload (rtx first, int global) /* If we allocated another stack slot, redo elimination bookkeeping. */ if (starting_frame_size != get_frame_size ()) continue; - if (starting_frame_size && cfun->stack_alignment_needed) + if (starting_frame_size && crtl->stack_alignment_needed) { /* If we have a stack frame, we must align it now. The stack size may be a part of the offset computation for @@ -1022,7 +1022,7 @@ reload (rtx first, int global) stack frame when none is needed should STARTING_FRAME_OFFSET not be already aligned to STACK_BOUNDARY. */ - assign_stack_local (BLKmode, 0, cfun->stack_alignment_needed); + assign_stack_local (BLKmode, 0, crtl->stack_alignment_needed); if (starting_frame_size != get_frame_size ()) continue; } |