diff options
author | Jan Hubicka <jh@suse.cz> | 2013-08-03 13:02:37 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2013-08-03 11:02:37 +0000 |
commit | bc0ec02766e456e7ba0812aac1d02ac1bafdb46e (patch) | |
tree | fd2c8e4d8d7c3285928ec7b185aa274fc22fa0be /gcc/cgraph.h | |
parent | 0e8853eefb91d4a81bb45eb25db4dd95dc2cf1c4 (diff) | |
download | gcc-bc0ec02766e456e7ba0812aac1d02ac1bafdb46e.zip gcc-bc0ec02766e456e7ba0812aac1d02ac1bafdb46e.tar.gz gcc-bc0ec02766e456e7ba0812aac1d02ac1bafdb46e.tar.bz2 |
cgraphunit.c (add_new_function): Fix logic when adding from late IPA pass.
* cgraphunit.c (add_new_function): Fix logic when adding from
late IPA pass.
(assemble_thunk): Rename to ...
(expand_thunk); .. this one; export; get it working with general functions;
make produced gimple valid.
* cgraph.h (expand_thunk): Declare.
From-SVN: r201463
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 4e4dddc..734f556 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -716,6 +716,7 @@ void fixup_same_cpp_alias_visibility (symtab_node, symtab_node target, tree); IN_SSA is true if the gimple is in SSA. */ basic_block init_lowered_empty_function (tree, bool); void cgraph_reset_node (struct cgraph_node *); +void expand_thunk (struct cgraph_node *); /* In cgraphclones.c */ |