From: Kazu Hirata Date: Fri, 8 Apr 2005 17:09:20 +0000 (+0000) Subject: function.c (push_function_context_to): Don't set contains_functions. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5acbdd12d91805fb5c66d125eff64425d649ea7c;p=gcc.git function.c (push_function_context_to): Don't set contains_functions. * function.c (push_function_context_to): Don't set contains_functions. * function.h (function): Remove contains_functions. (current_function_contains_functions): Remove. From-SVN: r97837 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9a46c4710dc..499b3a408ed 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -2,6 +2,11 @@ * c-tree.h (C_LANG_TREE_NODE_CHAIN_NEXT): Remove. + * function.c (push_function_context_to): Don't set + contains_functions. + * function.h (function): Remove contains_functions. + (current_function_contains_functions): Remove. + 2005-04-08 Ulrich Weigand * config/s390/tpf.h (ASM_SPEC): Define. diff --git a/gcc/function.c b/gcc/function.c index 9db8ae08952..45e2f4c748b 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -242,21 +242,10 @@ find_function_data (tree decl) variables. */ void -push_function_context_to (tree context) +push_function_context_to (tree context ATTRIBUTE_UNUSED) { struct function *p; - if (context) - { - if (context == current_function_decl) - cfun->contains_functions = 1; - else - { - struct function *containing = find_function_data (context); - containing->contains_functions = 1; - } - } - if (cfun == 0) init_dummy_function_start (); p = cfun; diff --git a/gcc/function.h b/gcc/function.h index 6444554189f..95891365182 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -380,9 +380,6 @@ struct function GTY(()) function. */ unsigned int has_nonlocal_goto : 1; - /* Nonzero if function being compiled contains nested functions. */ - unsigned int contains_functions : 1; - /* Nonzero if the current function is a thunk, i.e., a lightweight function implemented by the output_mi_thunk hook) that just adjusts one of its arguments and forwards to another @@ -452,7 +449,6 @@ extern int trampolines_created; #define current_function_calls_setjmp (cfun->calls_setjmp) #define current_function_calls_alloca (cfun->calls_alloca) #define current_function_calls_eh_return (cfun->calls_eh_return) -#define current_function_contains_functions (cfun->contains_functions) #define current_function_is_thunk (cfun->is_thunk) #define current_function_args_info (cfun->args_info) #define current_function_args_size (cfun->args_size)