mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 10:50:51 +08:00
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:
parent
170082880f
commit
2743ba1c48
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user