Commit da06f1ae by Nick Clifton Committed by Nick Clifton

(symbian_possibly_export_base_class): Replace use of deleted...

(symbian_possibly_export_base_class): Replace use of deleted
TYPE_USES_VIRTUAL_BASECLASSES macro with TYPE_CONTAINS_VPTR_P.

From-SVN: r88739
parent 5d5a519f
2004-10-08 Nick Clifton <nickc@redhat.com>
* config/sh/symbian.c (symbian_possibly_export_base_class):
Replace use of deleted TYPE_USES_VIRTUAL_BASECLASSES macro with
TYPE_CONTAINS_VPTR_P.
2004-10-08 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
* config/m32r/m32r.h (CONDITIONAL_REGISTER_USAGE): Don't exclude
......
......@@ -559,8 +559,7 @@ symbian_possibly_export_base_class (tree base_class)
tree methods;
int len;
if (! (TYPE_POLYMORPHIC_P (base_class)
|| TYPE_USES_VIRTUAL_BASECLASSES (base_class)))
if (! (TYPE_CONTAINS_VPTR_P (base_class)))
return;
methods = CLASSTYPE_METHOD_VEC (base_class);
......
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