From: Andy Hutchinson Date: Sat, 24 May 2008 17:00:47 +0000 (+0000) Subject: * function.c: Include target hook for nonlocal_goto frame value. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=88280cf9e0b1be69c56e6526b8585eebdaa439fc;p=gcc.git * function.c: Include target hook for nonlocal_goto frame value. From-SVN: r135850 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d036e0318ac..ec65de5c093 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2008-05-24 Andy Hutchinson + + * function.c: Include target hook for nonlocal_goto frame value. + 2008-05-24 Richard Guenther * tree-dfa.c (refs_may_alias_p): Re-instantiate case that diff --git a/gcc/function.c b/gcc/function.c index 5f9c3a5ce2c..f5a67404562 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -4234,7 +4234,7 @@ expand_function_start (tree subr) r_save = expand_expr (t_save, NULL_RTX, VOIDmode, EXPAND_WRITE); r_save = convert_memory_address (Pmode, r_save); - emit_move_insn (r_save, virtual_stack_vars_rtx); + emit_move_insn (r_save, targetm.builtin_setjmp_frame_value ()); update_nonlocal_goto_save_area (); }