diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2004-07-28 02:27:20 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2004-07-27 22:27:20 -0400 |
commit | 1a837f7746a6627e3651119531de18fcd95d6dfd (patch) | |
tree | 568e306fd21e996f7b463cb5bdd43364edf136f6 /gcc/tree-inline.h | |
parent | e847cc68ebc1e2a961941e75ae613fec9f90463b (diff) | |
download | gcc-1a837f7746a6627e3651119531de18fcd95d6dfd.zip gcc-1a837f7746a6627e3651119531de18fcd95d6dfd.tar.gz gcc-1a837f7746a6627e3651119531de18fcd95d6dfd.tar.bz2 |
re PR tree-optimization/15077 (ICE in make_decl_rtl when inlining tail recursive nested function)
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.
From-SVN: r85247
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 4619e31..b62b424 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. |