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
This commit is contained in:
parent
2e3092d535
commit
b7805411a0
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user