aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2008-04-14 23:53:54 +0000
committerDanny Smith <dannysmith@gcc.gnu.org>2008-04-14 23:53:54 +0000
commit39e6670f28ec34bf0edba7dd5425a2fccdd798a9 (patch)
treec01f85bb3428e2ae437ae551dd62b0b78a288c23 /gcc
parent8edb93c4239c39fa64436840a5813cda17f4678c (diff)
downloadgcc-39e6670f28ec34bf0edba7dd5425a2fccdd798a9.zip
gcc-39e6670f28ec34bf0edba7dd5425a2fccdd798a9.tar.gz
gcc-39e6670f28ec34bf0edba7dd5425a2fccdd798a9.tar.bz2
re PR target/35921 (Con/de-structor definition fails to override dllimport declaration)
PR target/35921 * optimize.c (maybe_clone_body): Copy DECL_DLLIMPORT_P flag to clone. From-SVN: r134298
Diffstat (limited to 'gcc')
-rw-r--r--gcc/cp/ChangeLog6
-rw-r--r--gcc/cp/optimize.c1
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 1e13165..cee41d5 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,9 @@
+2008-04-16 Danny Smith <dannysmith@users.sourceforge.net>
+
+ PR target/35921
+ * optimize.c (maybe_clone_body): Copy DECL_DLLIMPORT_P flag
+ to clone.
+
2008-04-09 Jason Merrill <jason@redhat.com>
PR c++/35708
diff --git a/gcc/cp/optimize.c b/gcc/cp/optimize.c
index 2ffbd6f..a91f8d5 100644
--- a/gcc/cp/optimize.c
+++ b/gcc/cp/optimize.c
@@ -146,6 +146,7 @@ maybe_clone_body (tree fn)
TREE_PUBLIC (clone) = TREE_PUBLIC (fn);
DECL_VISIBILITY (clone) = DECL_VISIBILITY (fn);
DECL_VISIBILITY_SPECIFIED (clone) = DECL_VISIBILITY_SPECIFIED (fn);
+ DECL_DLLIMPORT_P (clone) = DECL_DLLIMPORT_P (fn);
/* Adjust the parameter names and locations. */
parm = DECL_ARGUMENTS (fn);