class.c (layout_class_method): Don't report error on non-static overriding static...
authorAlexandre Petit-Bianco <apbianco@cygnus.com>
Tue, 1 Dec 1998 14:28:02 +0000 (14:28 +0000)
committerAlexandre Petit-Bianco <apbianco@gcc.gnu.org>
Tue, 1 Dec 1998 14:28:02 +0000 (06:28 -0800)
commit82371d41c2e0a1e8c68c43748a71bb9deec0ed1a
tree009299b3815a338dbba35958d0320cfdada1c86f
parentdf3ba30ac3667b0ff00d7ae8aa29ffad2d1c68d4
class.c (layout_class_method): Don't report error on non-static overriding static if the method is private.

Tue Dec  1 13:53:24 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
* class.c (layout_class_method): Don't report error on non-static
  overriding static if the method is private.
* java-tree.h (finish_class): Prototype added.
* lex.c (java_get_line_col): Handle col argument -2 value.
* parse.h: All static method declarations moved to parse.y.
* parse.y: Now contains all static method declarations previously
  found in parse.h.
(find_expr_with_wfl, missing_return_error,
  unreachable_stmt_error): New functions.
(java_get_real_method_name): Identify constructors bearing class
  names in source code compiled classes only.
(java_complete_expand_methods): Call missing_return_error.
(invocation_mode): Private methods invoked as static methods.
(java_complete_tree): Call unreachable_stmt_error.
This patch corrects the way unreachable statement and missing return
statement errors are reported. It also fixes random bugs.

From-SVN: r24036
gcc/java/ChangeLog
gcc/java/class.c
gcc/java/java-tree.h
gcc/java/lex.c
gcc/java/parse.c
gcc/java/parse.h
gcc/java/parse.y