aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-04-08 17:09:20 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-04-08 17:09:20 +0000
commit5acbdd12d91805fb5c66d125eff64425d649ea7c (patch)
tree882423c97bd0136c1fe23c6c26b2fb5d1c7d4057 /gcc/function.h
parentda25d93e4605571413c85f64962966cadeb59406 (diff)
downloadgcc-5acbdd12d91805fb5c66d125eff64425d649ea7c.zip
gcc-5acbdd12d91805fb5c66d125eff64425d649ea7c.tar.gz
gcc-5acbdd12d91805fb5c66d125eff64425d649ea7c.tar.bz2
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
Diffstat (limited to 'gcc/function.h')
-rw-r--r--gcc/function.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/function.h b/gcc/function.h
index 6444554..9589136 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)