Commit bdad3e2d by Kazu Hirata Committed by Kazu Hirata

function.h (function): Remove instrument_entry_exit.

	* function.h (function): Remove instrument_entry_exit.
	(current_function_instrument_entry_exit): Remove.

From-SVN: r97838
parent 5acbdd12
...@@ -7,6 +7,9 @@ ...@@ -7,6 +7,9 @@
* function.h (function): Remove contains_functions. * function.h (function): Remove contains_functions.
(current_function_contains_functions): Remove. (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> 2005-04-08 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/tpf.h (ASM_SPEC): Define. * config/s390/tpf.h (ASM_SPEC): Define.
......
...@@ -393,10 +393,6 @@ struct function GTY(()) ...@@ -393,10 +393,6 @@ struct function GTY(())
can throw. */ can throw. */
unsigned int all_throwers_are_sibcalls : 1; 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. */ /* Nonzero if profiling code should be generated. */
unsigned int profile : 1; unsigned int profile : 1;
...@@ -458,7 +454,6 @@ extern int trampolines_created; ...@@ -458,7 +454,6 @@ extern int trampolines_created;
#define current_function_stdarg (cfun->stdarg) #define current_function_stdarg (cfun->stdarg)
#define current_function_internal_arg_pointer (cfun->internal_arg_pointer) #define current_function_internal_arg_pointer (cfun->internal_arg_pointer)
#define current_function_return_rtx (cfun->return_rtx) #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_profile (cfun->profile)
#define current_function_funcdef_no (cfun->funcdef_no) #define current_function_funcdef_no (cfun->funcdef_no)
#define current_function_limit_stack (cfun->limit_stack) #define current_function_limit_stack (cfun->limit_stack)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment