diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-05-16 22:24:26 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-05-16 22:24:26 +0000 |
commit | c8ae5ac2575c6c38358e70210a2ad000b77647f1 (patch) | |
tree | 4771f6f7459bb79d821387c1cdb37bd5ee699b11 /gcc/cgraph.h | |
parent | 02b2818cfeffc3709b01ae5a2475d6f94eacb056 (diff) | |
download | gcc-c8ae5ac2575c6c38358e70210a2ad000b77647f1.tar.gz |
* cgraph.c (dump_cgraph_node): Dump versionable flag.
* cgraph.h (cgraph_local_info): Add versionable flag.
* ipa-cp.c (ipcp_analyze_node): Set versionable flag.
(ipcp_versionable_function_p): Use it.
* lto-cgraph.c (lto_output_node, input_overwrite_node): Stream
versionable flag.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159467 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index d0f7e9a7047..f8d8e6e8291 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -105,6 +105,10 @@ struct GTY(()) cgraph_local_info { /* False when there something makes inlining impossible (such as va_arg). */ unsigned inlinable : 1; + /* False when there something makes versioning impossible. + Currently computed and used only by ipa-cp. */ + unsigned versionable : 1; + /* True when function should be inlined independently on its size. */ unsigned disregard_inline_limits : 1; |