diff options
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/cp/decl2.c | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 2e89bcc..c8f9358 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2004-07-01 Nick Clifton <nickc@redhat.com> + + * decl2.c (import_export_class): Invoke the + import_export_class field in the gcc_target structure if it is not + empty. + 2004-06-30 Richard Henderson (rth@redhat.com> * decl.c (start_preparsed_function): Don't set immediate_size_expand. diff --git a/gcc/cp/decl2.c b/gcc/cp/decl2.c index f3ecc3e..191888e 100644 --- a/gcc/cp/decl2.c +++ b/gcc/cp/decl2.c @@ -1510,6 +1510,10 @@ import_export_class (tree ctype) import_export = 0; #endif + /* Allow backends the chance to overrule the decision. */ + if (targetm.cxx.import_export_class) + import_export = targetm.cxx.import_export_class (ctype, import_export); + if (import_export) { SET_CLASSTYPE_INTERFACE_KNOWN (ctype); |