diff options
author | Richard Henderson <rth@redhat.com> | 2004-05-20 10:37:02 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-05-20 10:37:02 -0700 |
commit | 7e14028056eafe6486281fb96d17d2f873f6248f (patch) | |
tree | 26093e305b2beac279f6e5071f666f80884039c2 /gcc/gimplify.c | |
parent | 5ce7d75d89b0da57124c2461364c32f1e7f7910b (diff) | |
download | gcc-7e14028056eafe6486281fb96d17d2f873f6248f.zip gcc-7e14028056eafe6486281fb96d17d2f873f6248f.tar.gz gcc-7e14028056eafe6486281fb96d17d2f873f6248f.tar.bz2 |
re PR tree-optimization/15454 (tree-ccp generates wrong code for nested functions)
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.
From-SVN: r82064
Diffstat (limited to 'gcc/gimplify.c')
-rw-r--r-- | gcc/gimplify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimplify.c b/gcc/gimplify.c index 907d443..21cf014 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -286,7 +286,7 @@ create_artificial_label (void) static GTY(()) unsigned int tmp_var_id_num; -static tree +tree create_tmp_var_name (const char *prefix) { char *tmp_name; |