diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-29 22:44:05 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-29 22:44:05 +0000 |
commit | 9197503feb1ae04f7e5b952003aa94aeb0390419 (patch) | |
tree | b8bd1c0f20314f33063c82cf2cf403d0630408e5 /gcc/function.h | |
parent | ecc82929a44b5a046c89ba1361c354f1466b85e4 (diff) | |
download | gcc-9197503feb1ae04f7e5b952003aa94aeb0390419.tar.gz |
* function.h (struct function): Add rtl_inline_init, saved_for_inline.
* integrate.c (save_for_inline): Set saved_for_inline.
* c-semantics.c (genrtl_scope_stmt): Check it.
* toplev.c (wrapup_global_declarations): Check it.
(rest_of_handle_inlining): Set and check rtl_inline_init.
(rest_of_compilation): Remove out of date comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70931 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/function.h b/gcc/function.h index 4216acb6a25..f94a64286f3 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -504,6 +504,13 @@ struct function GTY(()) /* Nonzero if code to initialize arg_pointer_save_area has been emitted. */ unsigned int arg_pointer_save_area_init : 1; + + /* Flag for use by ther rtl inliner, to tell if the function has been + processed at least once. */ + unsigned int rtl_inline_init : 1; + + /* Nonzero if the rtl inliner has saved the function for inlining. */ + unsigned int saved_for_inline : 1; }; /* The function currently being compiled. */ |