diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-15 12:46:07 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-15 12:46:07 +0000 |
commit | d2010b0467ba325c1e8c52b20f776830c191b165 (patch) | |
tree | af8f6b819cf8320c57100f0ded0f5d0bdbae5c96 /gcc/function.h | |
parent | f3e1a7275a876f9e90ea46dc57fa7352f39cb892 (diff) | |
download | gcc-d2010b0467ba325c1e8c52b20f776830c191b165.tar.gz |
gcc/ChangeLog:
2004-06-15 Paolo Bonzini <bonzini@gnu.org>
* function.h (struct function): Remove cannot_inline field.
(current_function_cannot_inline): Remove.
* passes.c (rest_of_compilation): Reset DECL_DEFER_OUTPUT.
Simplify conditionals to ignore warn_return_type.
* tree-optimize.c (tree_rest_of_compilation): Do not reset
DECL_DEFER_OUTPUT.
* objc/objc-act.c (build_module_descriptor, finish_method_def):
Do not set current_function_cannot_inline.
gcc/java/ChangeLog:
2004-06-15 Paolo Bonzini <bonzini@gnu.org>
* class.c (emit_register_classes): Make the function uninlinable,
do not set current_function_cannot_inline.
* resource.c (write_resource_constructor): Do not reset
flag_inline_functions around rest_of_compilation.
gcc/cp/ChangeLog:
2004-06-15 Paolo Bonzini <bonzini@gnu.org>
* cp-tree.h (struct language_function): Remove cannot_inline.
* decl.c (save_function_data): cannot_inline is no more.
(cxx_push_function_context): Likewise.
* decl2.c (start_objects, start_static_storage_duration_function):
Reset DECL_INLINE, set DECL_UNINLINABLE.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83181 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/function.h b/gcc/function.h index bd19e3d4450..19e3400eee9 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -232,10 +232,6 @@ struct function GTY(()) /* The arg pointer hard register, or the pseudo into which it was copied. */ rtx internal_arg_pointer; - /* Language-specific reason why the current function cannot be made - inline. */ - const char *cannot_inline; - /* Opaque pointer used by get_hard_reg_initial_val and has_hard_reg_initial_val (see integrate.[hc]). */ struct initial_value_struct *hard_reg_initial_vals; @@ -542,7 +538,6 @@ extern int trampolines_created; #define current_function_limit_stack (cfun->limit_stack) #define current_function_uses_pic_offset_table (cfun->uses_pic_offset_table) #define current_function_uses_const_pool (cfun->uses_const_pool) -#define current_function_cannot_inline (cfun->cannot_inline) #define current_function_epilogue_delay_list (cfun->epilogue_delay_list) #define current_function_has_nonlocal_label (cfun->has_nonlocal_label) #define current_function_has_nonlocal_goto (cfun->has_nonlocal_goto) |