re GNATS gcj/195: (gcj fail on code to implement an inner interface.)

(This trying to counter the effect of the PR 195 check in -- this should
 be right now.)

From-SVN: r33602
parent 2e3092d5
......@@ -9996,7 +9996,8 @@ java_complete_expand_methods (class_decl)
for (decl = first_decl; decl; decl = TREE_CHAIN (decl))
{
/* Skip abstract or native methods */
if (METHOD_ABSTRACT (decl) || METHOD_NATIVE (decl))
if (METHOD_ABSTRACT (decl) || METHOD_NATIVE (decl)
|| DECL_CONSTRUCTOR_P (decl) || DECL_CLINIT_P (decl))
continue;
java_complete_expand_method (decl);
}
......
......@@ -7298,7 +7298,8 @@ java_complete_expand_methods (class_decl)
for (decl = first_decl; decl; decl = TREE_CHAIN (decl))
{
/* Skip abstract or native methods */
if (METHOD_ABSTRACT (decl) || METHOD_NATIVE (decl))
if (METHOD_ABSTRACT (decl) || METHOD_NATIVE (decl)
|| DECL_CONSTRUCTOR_P (decl) || DECL_CLINIT_P (decl))
continue;
java_complete_expand_method (decl);
}
......
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