diff options
| author | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-04 21:24:03 +0000 |
|---|---|---|
| committer | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-04 21:24:03 +0000 |
| commit | 7e9f640ddd0956a41195dd00f5730d8c889bb178 (patch) | |
| tree | ae648be4b1050d8504f129f01564b3b2af67cdaf | |
| parent | f7b38f2d7fe07bae517593a829eef4183a6e6f9f (diff) | |
| download | ppe42-gcc-7e9f640ddd0956a41195dd00f5730d8c889bb178.tar.gz ppe42-gcc-7e9f640ddd0956a41195dd00f5730d8c889bb178.zip | |
* cgraphunit.c (cgraph_build_static_cdtor): Don't set
DECL_IGNORED_P.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@129024 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/cgraphunit.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 94ac51b7ae8..35003ed20e5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-10-04 Geoffrey Keating <geoffk@apple.com> + + * cgraphunit.c (cgraph_build_static_cdtor): Don't set + DECL_IGNORED_P. + 2007-10-04 Anatoly Sokolov <aesok@post.ru> * config/avr/avr.c (expand_epilogue): Don't set RTX_FRAME_RELATED_P. diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 0218d260066..e4b2e5c63f1 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -1400,7 +1400,6 @@ cgraph_build_static_cdtor (char which, tree body, int priority) resdecl = build_decl (RESULT_DECL, NULL_TREE, void_type_node); DECL_ARTIFICIAL (resdecl) = 1; - DECL_IGNORED_P (resdecl) = 1; DECL_RESULT (decl) = resdecl; allocate_struct_function (decl); @@ -1408,7 +1407,6 @@ cgraph_build_static_cdtor (char which, tree body, int priority) TREE_STATIC (decl) = 1; TREE_USED (decl) = 1; DECL_ARTIFICIAL (decl) = 1; - DECL_IGNORED_P (decl) = 1; DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl) = 1; DECL_SAVED_TREE (decl) = body; TREE_PUBLIC (decl) = ! targetm.have_ctors_dtors; |

