diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-03-28 19:22:10 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-03-28 19:22:10 +0000 |
commit | 152f94fc94fe166ddd21b31017470d3f686932ea (patch) | |
tree | bc9d1db851875472c8c6aa617724097266558a6f /gcc/java/lex.c | |
parent | 3228bc05fc4414db84bd0a81099d22ff1bd4a4e9 (diff) | |
download | gcc-152f94fc94fe166ddd21b31017470d3f686932ea.zip gcc-152f94fc94fe166ddd21b31017470d3f686932ea.tar.gz gcc-152f94fc94fe166ddd21b31017470d3f686932ea.tar.bz2 |
Warning fixes:
* class.c (maybe_add_interface): Remove unused variable
`interface_binfo'.
(make_class_data): Use = for assignment, not ==. Likewise.
(emit_register_classes): Remove unused variable `decl'.
* lex.c: Fix comment so as not to contain an embedded `/*'.
* verify.c (verify_jvm_instructions): Remove unused variable
`self_type'.
From-SVN: r26046
Diffstat (limited to 'gcc/java/lex.c')
-rw-r--r-- | gcc/java/lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/lex.c b/gcc/java/lex.c index df15a8f..dae7ce7 100644 --- a/gcc/java/lex.c +++ b/gcc/java/lex.c @@ -379,7 +379,7 @@ java_lineterminator (c) } /* Parse the end of a C style comment. - * C is the first character after the '/*'. */ + * C is the first character following the '/' and '*'. */ static void java_parse_end_comment (c) unicode_t c; |