diff options
author | Jan Hubicka <jh@suse.cz> | 2004-02-12 17:33:07 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2004-02-12 16:33:07 +0000 |
commit | 8f6a8d03ac1bf35b689663483efc691415b48291 (patch) | |
tree | ee72bdd0cbeb2ea851461e53c34c876d51797455 /gcc | |
parent | 18c0ecbeb82efa35502754b4031214050f0483ce (diff) | |
download | gcc-8f6a8d03ac1bf35b689663483efc691415b48291.zip gcc-8f6a8d03ac1bf35b689663483efc691415b48291.tar.gz gcc-8f6a8d03ac1bf35b689663483efc691415b48291.tar.bz2 |
tree-optimize.c (tree_rest_of_compilation): Do not release DECL_ARGUMENTS.
* tree-optimize.c (tree_rest_of_compilation): Do not release
DECL_ARGUMENTS.
From-SVN: r77711
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-optimize.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f036949..6ed2399 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-02-12 Jan Hubicka <jh@suse.cz> + + * tree-optimize.c (tree_rest_of_compilation): Do not release + DECL_ARGUMENTS. + 2004-02-11 Matt Kraai <kraai@alumni.cmu.edu> * doc/install.texi: Fix the spelling of "explicitly". diff --git a/gcc/tree-optimize.c b/gcc/tree-optimize.c index b60d2f3..9df5adb 100644 --- a/gcc/tree-optimize.c +++ b/gcc/tree-optimize.c @@ -218,8 +218,6 @@ tree_rest_of_compilation (tree fndecl, bool nested_p) If rest_of_compilation set this to 0, leave it 0. */ if (DECL_INITIAL (fndecl) != 0) DECL_INITIAL (fndecl) = error_mark_node; - - DECL_ARGUMENTS (fndecl) = 0; } } |