parse.y (strip_out_static_field_access_decl): Return operand if it satisfies JDECL_P.
* parse.y (strip_out_static_field_access_decl): Return operand if it satisfies JDECL_P. From-SVN: r29086
This commit is contained in:
parent
e9be002826
commit
2f11d4079a
@ -1,3 +1,8 @@
|
||||
1999-09-03 Tom Tromey <tromey@cygnus.com>
|
||||
|
||||
* parse.y (strip_out_static_field_access_decl): Return operand if
|
||||
it satisfies JDECL_P.
|
||||
|
||||
1999-09-02 Tom Tromey <tromey@cygnus.com>
|
||||
|
||||
* gjavah.c (decode_signature_piece): Emit "::" in JArray<>.
|
||||
|
980
gcc/java/parse.c
980
gcc/java/parse.c
File diff suppressed because it is too large
Load Diff
@ -6585,6 +6585,8 @@ strip_out_static_field_access_decl (node)
|
||||
== soft_initclass_node)
|
||||
return TREE_OPERAND (op1, 1);
|
||||
}
|
||||
else if (JDECL_P (op1))
|
||||
return op1;
|
||||
}
|
||||
return node;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user