re PR java/20312 (No warning on bad method)

PR java/20312
	* parse.y (checks_throws_clauses): Check exceptions list even when
	the base class does not come from a source file being compiled.
	(java_complete_lhs): Remove unused variable 'wfl'.

From-SVN: r96251
This commit is contained in:
Ranjit Mathew 2005-03-10 18:40:26 +00:00 committed by Ranjit Mathew
parent 170082880f
commit 2743ba1c48
2 changed files with 7 additions and 5 deletions

View File

@ -1,3 +1,10 @@
2005-03-10 Ranjit Mathew <rmathew@hotmail.com>
PR java/20312
* parse.y (checks_throws_clauses): Check exceptions list even when
the base class does not come from a source file being compiled.
(java_complete_lhs): Remove unused variable 'wfl'.
2005-03-09 Ranjit Mathew <rmathew@hotmail.com>
PR java/20338

View File

@ -6702,10 +6702,6 @@ check_throws_clauses (tree method, tree method_wfl, tree found)
{
tree mthrows;
/* Can't check these things with class loaded from bytecode. FIXME */
if (!CLASS_FROM_SOURCE_P (DECL_CONTEXT (found)))
return;
for (mthrows = DECL_FUNCTION_THROWS (method);
mthrows; mthrows = TREE_CHAIN (mthrows))
{
@ -11911,7 +11907,6 @@ java_complete_lhs (tree node)
if (!EXPR_WFL_NODE (node) /* Or a PRIMARY flag ? */
|| TREE_CODE (EXPR_WFL_NODE (node)) == IDENTIFIER_NODE)
{
tree wfl = node;
node = resolve_expression_name (node, NULL);
if (node == error_mark_node)
return node;