diff options
author | Jan Hubicka <hubicka@ucw.cz> | 2016-05-08 20:44:02 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2016-05-08 18:44:02 +0000 |
commit | 6bbf39b789101366bccacda4f912b05636f03887 (patch) | |
tree | 6fd631ddca25c1c6908f1589de9b99b80f6a38b4 /gcc/cgraph.h | |
parent | 3b695ba657799e3723a892a5fec1a1fb2061c63c (diff) | |
download | gcc-6bbf39b789101366bccacda4f912b05636f03887.tar.gz |
cgraph.c (thunk_adjust): Export.
* cgraph.c (thunk_adjust): Export.
* cgraphclones.c (cgraph_node::create_clone): Clone thunk info.
* cgraphunit.c (thunk_adjust): Export.
(cgraph_node::assemble_thunks_and_aliases): Do not assemble inlined
thunks.
* ipa-inline-analyssi.c (compute_inline_parameters): Thunks are
inlinable.
* tree-inline.c (expand_call_inline): Expand thunks inline.
From-SVN: r236012
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index d714ad75189..8ad9f456a22 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -2299,6 +2299,7 @@ void cgraphunit_c_finalize (void); IN_SSA is true if the gimple is in SSA. */ basic_block init_lowered_empty_function (tree, bool, gcov_type); +tree thunk_adjust (gimple_stmt_iterator *, tree, bool, HOST_WIDE_INT, tree); /* In cgraphclones.c */ tree clone_function_name_1 (const char *, const char *); |