aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2012-08-02 20:28:36 -0700
committerRichard Henderson <rth@gcc.gnu.org>2012-08-02 20:28:36 -0700
commit34831f3e27748ea41fe976de0e9a2ead29059878 (patch)
treeb5d9d7cd2065f71046fd8b930903596b2c603b72 /gcc/function.c
parent6e48db73ed88eeb3e1025b28aa49c4f5ee4f3a76 (diff)
downloadgcc-34831f3e27748ea41fe976de0e9a2ead29059878.zip
gcc-34831f3e27748ea41fe976de0e9a2ead29059878.tar.gz
gcc-34831f3e27748ea41fe976de0e9a2ead29059878.tar.bz2
Revert "PR 34548"
This reverts commit 190051. From-SVN: r190110
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc/function.c b/gcc/function.c
index 827f687..f1e0b2d3 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -1892,14 +1892,7 @@ instantiate_virtual_regs (void)
/* Compute the offsets to use for this function. */
in_arg_offset = FIRST_PARM_OFFSET (current_function_decl);
var_offset = STARTING_FRAME_OFFSET;
-
dynamic_offset = STACK_DYNAMIC_OFFSET (current_function_decl);
- if (crtl->max_dynamic_stack_alignment)
- {
- int align = crtl->max_dynamic_stack_alignment / BITS_PER_UNIT;
- dynamic_offset = (dynamic_offset + align - 1) & -align;
- }
-
out_arg_offset = STACK_POINTER_OFFSET;
#ifdef FRAME_POINTER_CFA_OFFSET
cfa_offset = FRAME_POINTER_CFA_OFFSET (current_function_decl);