diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-20 17:37:02 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-20 17:37:02 +0000 |
commit | 3efaa21fdf009b84db08db0510758f80022653fc (patch) | |
tree | 26093e305b2beac279f6e5071f666f80884039c2 /gcc/tree-gimple.h | |
parent | f47da044d48188a9b956de5462cb3d9fa59bea1a (diff) | |
download | gcc-3efaa21fdf009b84db08db0510758f80022653fc.tar.gz |
PR 15454
* tree-nested.c (get_chain_decl): Create a PARM_DECL by hand.
* function.c (expand_function_start): Expand static_chain_decl by hand.
* gimplify.c (create_tmp_var_name): Export.
* tree-gimple.h (create_tmp_var_name): Declare.
* gcc.c-torture/execute/20040520-1.c: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@82064 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-gimple.h')
-rw-r--r-- | gcc/tree-gimple.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-gimple.h b/gcc/tree-gimple.h index d2c91032031..59cb3b365ac 100644 --- a/gcc/tree-gimple.h +++ b/gcc/tree-gimple.h @@ -26,6 +26,7 @@ Boston, MA 02111-1307, USA. */ #include "tree-iterator.h" extern tree create_tmp_var_raw (tree, const char *); +extern tree create_tmp_var_name (const char *); extern tree create_tmp_var (tree, const char *); extern bool is_gimple_tmp_var (tree); extern tree get_initialized_tmp_var (tree, tree *, tree *); |