aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-04-08 17:10:37 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-04-08 17:10:37 +0000
commitbdad3e2df6eb4374415bd145fd42ea8663b0248f (patch)
treefde3e732c541aa5bd85a51cf7f2c302feab2f197 /gcc/function.h
parent5acbdd12d91805fb5c66d125eff64425d649ea7c (diff)
downloadgcc-bdad3e2df6eb4374415bd145fd42ea8663b0248f.zip
gcc-bdad3e2df6eb4374415bd145fd42ea8663b0248f.tar.gz
gcc-bdad3e2df6eb4374415bd145fd42ea8663b0248f.tar.bz2
function.h (function): Remove instrument_entry_exit.
* function.h (function): Remove instrument_entry_exit. (current_function_instrument_entry_exit): Remove. From-SVN: r97838
Diffstat (limited to 'gcc/function.h')
-rw-r--r--gcc/function.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/function.h b/gcc/function.h
index 9589136..8217200 100644
--- a/gcc/function.h
+++ b/gcc/function.h
@@ -393,10 +393,6 @@ struct function GTY(())
can throw. */
unsigned int all_throwers_are_sibcalls : 1;
- /* Nonzero if instrumentation calls for function entry and exit should be
- generated. */
- unsigned int instrument_entry_exit : 1;
-
/* Nonzero if profiling code should be generated. */
unsigned int profile : 1;
@@ -458,7 +454,6 @@ extern int trampolines_created;
#define current_function_stdarg (cfun->stdarg)
#define current_function_internal_arg_pointer (cfun->internal_arg_pointer)
#define current_function_return_rtx (cfun->return_rtx)
-#define current_function_instrument_entry_exit (cfun->instrument_entry_exit)
#define current_function_profile (cfun->profile)
#define current_function_funcdef_no (cfun->funcdef_no)
#define current_function_limit_stack (cfun->limit_stack)