diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-28 02:27:20 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-28 02:27:20 +0000 |
commit | ff6fba0d15eea6dfb7ffd13b42f293a7430b7661 (patch) | |
tree | 568e306fd21e996f7b463cb5bdd43364edf136f6 /gcc/tree-inline.h | |
parent | c2514472e15476dac16d57406e535ccc2ed0fa08 (diff) | |
download | gcc-ff6fba0d15eea6dfb7ffd13b42f293a7430b7661.tar.gz |
PR optimization/15077
* function.h (struct function): Add field saved_static_chain_decl.
Fix comment for static_chain_decl.
* tree-inline.c (save_body): Add new arg and handle static_chain_decl.
* tree-inline.h (save_body): Add new arg.
* tree-optimize.c (tree_rest_of_compilation): Handle saving
static_chain_decl.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85247 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-inline.h')
-rw-r--r-- | gcc/tree-inline.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-inline.h b/gcc/tree-inline.h index 4619e314bef..b62b42447e9 100644 --- a/gcc/tree-inline.h +++ b/gcc/tree-inline.h @@ -26,10 +26,10 @@ Boston, MA 02111-1307, USA. */ void optimize_inline_calls (tree); bool tree_inlinable_function_p (tree); -tree copy_tree_r (tree*, int*, void*); -void clone_body (tree, tree, void*); -tree save_body (tree, tree *); -void remap_save_expr (tree*, void*, int*); +tree copy_tree_r (tree *, int *, void *); +void clone_body (tree, tree, void *); +tree save_body (tree, tree *, tree *); +void remap_save_expr (tree *, void *, int *); int estimate_num_insns (tree expr); /* 0 if we should not perform inlining. |