Commit 39e6670f by Danny Smith Committed by Danny Smith

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
parent 8edb93c4
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
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment