diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-08 17:10:37 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-08 17:10:37 +0000 |
commit | 7036781e4ec2a9608452f68075ccc25a80374c2b (patch) | |
tree | fde3e732c541aa5bd85a51cf7f2c302feab2f197 /gcc | |
parent | 52f6fde66181c30a1d9919acd45a4e12b31be8d7 (diff) | |
download | gcc-7036781e4ec2a9608452f68075ccc25a80374c2b.tar.gz |
* function.h (function): Remove instrument_entry_exit.
(current_function_instrument_entry_exit): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97838 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/function.h | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 499b3a408ed..72235292927 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -7,6 +7,9 @@ * function.h (function): Remove contains_functions. (current_function_contains_functions): Remove. + * function.h (function): Remove instrument_entry_exit. + (current_function_instrument_entry_exit): Remove. + 2005-04-08 Ulrich Weigand <uweigand@de.ibm.com> * config/s390/tpf.h (ASM_SPEC): Define. diff --git a/gcc/function.h b/gcc/function.h index 95891365182..8217200ff8b 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) |