diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-02 00:14:44 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-02 00:14:44 +0000 |
commit | 79bb87b463d5706bb4e739c2db89923bb05c8d0e (patch) | |
tree | 4d97ef1059d4e3e31ef7dfafa8353a8924c2bf2f /gcc/cgraph.h | |
parent | 1472d5965177f2c7eb7fedb80b5d47d4500b5975 (diff) | |
download | gcc-79bb87b463d5706bb4e739c2db89923bb05c8d0e.tar.gz |
* cgraphunit.c (cgraph_finalize_function): Set finalized.
(cgraph_finalize_function): Do not examine inlinablility.
(cgraph_finalize_compilation_unit): Do it here.
* cgraph.h (cgraph_local_info): Add finalized field.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68803 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 91f99bf2e71..bbf1c288618 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -35,6 +35,8 @@ struct cgraph_local_info GTY(()) /* Set when function can be inlined once (false only for functions calling alloca, using varargs and so on). */ bool can_inline_once; + /* Set once it has been finalized so we consider it to be output. */ + bool finalized; }; /* Information about the function that needs to be computed globally |