Commit 2f11d407 by Tom Tromey Committed by Tom Tromey

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
parent e9be0028
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<>.
......
......@@ -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;
}
......
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