diff options
author | Jan Hubicka <hubicka@gcc.gnu.org> | 2010-12-13 17:29:14 +0000 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2010-12-13 17:29:14 +0000 |
commit | e953c7545fed9d5db6b6b722c91f0b471511f3b6 (patch) | |
tree | ffe82c871c1426a0ebc79811e4ea2503a2082d3c | |
parent | 26716c44a3be7d99ae1a641ce3dc8cd828342d28 (diff) | |
download | gcc-e953c7545fed9d5db6b6b722c91f0b471511f3b6.zip gcc-e953c7545fed9d5db6b6b722c91f0b471511f3b6.tar.gz gcc-e953c7545fed9d5db6b6b722c91f0b471511f3b6.tar.bz2 |
re PR middle-end/45388 (Global constructor not found)
PR middle-end/45388
* decl2.c (start_objects): Do not generate collect2 recognicable name
for static ctor.
* ipa.c (cgraph_build_static_cdtor_1): Break out from ... ; add FINAL parameter.
(cgraph_build_static_cdtor): ... here.
(build_cdtor): Use cgraph_build_static_cdtor_1.
From-SVN: r167753
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 6 |
2 files changed, 13 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e668124..ced6603 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2010-12-13 Jan Hubicka <jh@suse.cz> + + PR middle-end/45388 + * ipa.c (cgraph_build_static_cdtor_1): Break out from ... ; add FINAL parameter. + (cgraph_build_static_cdtor): ... here. + (build_cdtor): Use cgraph_build_static_cdtor_1. + 2010-12-13 Nathan Froyd <froydnj@codesourcery.com> PR target/46040 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 0383806..caea47e 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2010-12-13 Jan Hubicka <jh@suse.cz> + + PR middle-end/45388 + * decl2.c (start_objects): Do not generate collect2 recognicable name + for static ctor. + 2010-12-12 Paolo Carlini <paolo.carlini@oracle.com> PR c++/46901 |