diff options
author | Jan Hubicka <hubicka@ucw.cz> | 2014-11-16 20:36:37 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2014-11-16 19:36:37 +0000 |
commit | 70486010428fdaeabd875022fee05122e9866424 (patch) | |
tree | 764c758c25d54ae7dff3cb061662445a47d38b28 /gcc/cgraphunit.c | |
parent | 9ff2f666aa330107eb6767c246b9d302247359c9 (diff) | |
download | gcc-70486010428fdaeabd875022fee05122e9866424.zip gcc-70486010428fdaeabd875022fee05122e9866424.tar.gz gcc-70486010428fdaeabd875022fee05122e9866424.tar.bz2 |
passes.c (execute_one_pass): Do not apply all transforms prior every simple IPA pass.
* passes.c (execute_one_pass): Do not apply all transforms prior
every simple IPA pass.
* cgraphunit.c: Do not include fibheap.h
(expand_thunk): Use get_untransformed_body.
(cgraph_node::expand): Likewise.
* tree-ssa-structalias.c (ipa_pta_execute): Skip inline clones.
* cgraph.c (release_function_body): Do not push cfun when CFG is not there.
(cgraph_node::get_untransformed_body): Break out from ...
(cgraph_node::get_body): ... here; add code to apply all transforms.
* cgraph.h (cgraph_node): Add get_untransformed_body.
* ipa-icf.c (sem_function::init): Use get_untransformed_body.
* cgraphclones.c (duplicate_thunk_for_node): Likewise.
* tree-inline.c (expand_call_inline): LIkewise.
* i386.c (ix86_reset_to_default_globals): Break out from ...
(ix86_set_current_function): ... here;
(ix86_reset_previous_fndecl): Use it.
(ix86_simd_clone_adjust): Use ix86_reset_previous_fndecl.
From-SVN: r217633
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 534c613..4fba9ff 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -197,7 +197,6 @@ along with GCC; see the file COPYING3. If not see #include "target.h" #include "diagnostic.h" #include "params.h" -#include "fibheap.h" #include "intl.h" #include "hash-map.h" #include "plugin-api.h" @@ -1469,7 +1468,7 @@ cgraph_node::expand_thunk (bool output_asm_thunks, bool force_gimple_thunk) } if (in_lto_p) - get_body (); + get_untransformed_body (); a = DECL_ARGUMENTS (thunk_fndecl); current_function_decl = thunk_fndecl; @@ -1522,7 +1521,7 @@ cgraph_node::expand_thunk (bool output_asm_thunks, bool force_gimple_thunk) gimple ret; if (in_lto_p) - get_body (); + get_untransformed_body (); a = DECL_ARGUMENTS (thunk_fndecl); current_function_decl = thunk_fndecl; @@ -1744,7 +1743,7 @@ cgraph_node::expand (void) announce_function (decl); process = 0; gcc_assert (lowered); - get_body (); + get_untransformed_body (); /* Generate RTL for the body of DECL. */ |