From: Danny Smith Date: Tue, 18 Oct 2005 22:05:57 +0000 (+0000) Subject: re PR target/23589 (internal compiler error: in rest_of_handle_final, at toplev.c... X-Git-Tag: misc/cutover-cvs2svn~109 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7edfc016601e65335667d922b70ad7f31434c312;p=thirdparty%2Fgcc.git re PR target/23589 (internal compiler error: in rest_of_handle_final, at toplev.c:2067) PR target/23589 * g++.dg/ext/dllimport11.C: New. From-SVN: r105580 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 6ba90568ccd7..a79e36e1f8db 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-10-18 Danny Smith + + PR target/23589 + * g++.dg/ext/dllimport11.C: New. + 2005-10-18 Volker Reichelt PR c++/22293 diff --git a/gcc/testsuite/g++.dg/ext/dllimport11.C b/gcc/testsuite/g++.dg/ext/dllimport11.C new file mode 100755 index 000000000000..369f96c66ea0 --- /dev/null +++ b/gcc/testsuite/g++.dg/ext/dllimport11.C @@ -0,0 +1,15 @@ +// PR target/23589 +// Template member functions do not get dllimport status of class. +// { dg-do compile { target i?86-*-cygwin* i?86-*-mingw*} } + +struct __attribute__((dllimport)) Foo +{ + template Foo (T); +}; + +void a (int i) +{ + Foo f(i); +} + +template Foo::Foo (T) {} // no dllimport warnings on definition.