�
* decl2.c (import_export_vtable): Suppress vtables for Java classes.
From-SVN: r21878
+1998-08-20 Per Bothner <bothner@cygnus.com>
+
+ * decl2.c (import_export_vtable): Suppress vtables for Java classes.
+
1998-08-20 Mark Mitchell <mark@markmitchell.com>
* decl.c (duplicate_decls): Always merge the old and new patterns
return;
/* +e0 or +e1 */
- if (write_virtuals < 2 && write_virtuals != 0)
+ if (write_virtuals < 0 || write_virtuals == 1 || TYPE_FOR_JAVA (type))
{
TREE_PUBLIC (decl) = 1;
- if (write_virtuals < 0)
+ if (write_virtuals < 0 || TYPE_FOR_JAVA (type))
DECL_EXTERNAL (decl) = 1;
DECL_INTERFACE_KNOWN (decl) = 1;
}