diff options
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c index 5ca83b1..56f9865 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -4259,7 +4259,9 @@ expand_function_start (tree subr) /* ??? We need to do this save early. Unfortunately here is before the frame variable gets declared. Help out... */ - expand_var (TREE_OPERAND (cfun->nonlocal_goto_save_area, 0)); + tree var = TREE_OPERAND (cfun->nonlocal_goto_save_area, 0); + if (!DECL_RTL_SET_P (var)) + expand_decl (var); t_save = build4 (ARRAY_REF, ptr_type_node, cfun->nonlocal_goto_save_area, |