From 4ac74fb88fb66c14da983ea9599f31b1e15c3fdf Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 27 Jul 1997 19:34:28 -0400 Subject: (put_var_into_stack, trampoline_address): Treat inline_function_decl like current_function_decl. From-SVN: r14539 --- gcc/function.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gcc/function.c') diff --git a/gcc/function.c b/gcc/function.c index 582c4ca..db7d3ea 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -1330,7 +1330,7 @@ put_var_into_stack (decl) /* If this variable comes from an outer function, find that function's saved context. */ - if (context != current_function_decl) + if (context != current_function_decl && context != inline_function_decl) for (function = outer_function_chain; function; function = function->next) if (function->decl == context) break; @@ -4632,7 +4632,8 @@ trampoline_address (function) /* Find the `struct function' for the function containing FUNCTION. */ fp = 0; fn_context = decl_function_context (function); - if (fn_context != current_function_decl) + if (fn_context != current_function_decl + && fn_context != inline_function_decl) for (fp = outer_function_chain; fp; fp = fp->next) if (fp->decl == fn_context) break; -- cgit v1.1