diff options
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/function.c b/gcc/function.c index d51edde..bbb9a51 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -6414,7 +6414,7 @@ allocate_struct_function (tree fndecl) if (fndecl == NULL) return; - DECL_SAVED_INSNS (fndecl) = cfun; + DECL_STRUCT_FUNCTION (fndecl) = cfun; cfun->decl = fndecl; result = DECL_RESULT (fndecl); @@ -6439,8 +6439,8 @@ allocate_struct_function (tree fndecl) static void prepare_function_start (tree fndecl) { - if (fndecl && DECL_SAVED_INSNS (fndecl)) - cfun = DECL_SAVED_INSNS (fndecl); + if (fndecl && DECL_STRUCT_FUNCTION (fndecl)) + cfun = DECL_STRUCT_FUNCTION (fndecl); else allocate_struct_function (fndecl); init_emit (); |