Commit ef833d3d by Alexandre Oliva Committed by Alexandre Oliva

lang.c (java_classify_record): Don't return RECORD_IS_INTERFACE for now.

* lang.c (java_classify_record): Don't return
RECORD_IS_INTERFACE for now.

From-SVN: r131105
parent 3ec1a737
2007-12-20 Alexandre Oliva <aoliva@redhat.com>
* lang.c (java_classify_record): Don't return
RECORD_IS_INTERFACE for now.
2007-12-18 Andrew Haley <aph@redhat.com>
PR java/27643
......
......@@ -965,7 +965,9 @@ java_classify_record (tree type)
if (! CLASS_P (type))
return RECORD_IS_STRUCT;
if (CLASS_INTERFACE (TYPE_NAME (type)))
/* ??? GDB does not support DW_TAG_interface_type as of December,
2007. Re-enable this at a later time. */
if (0 && CLASS_INTERFACE (TYPE_NAME (type)))
return RECORD_IS_INTERFACE;
return RECORD_IS_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