diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2001-12-01 18:42:49 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-12-01 18:42:49 +0000 |
commit | 357351e5a702dde74fbccf7ba88027e166b0111c (patch) | |
tree | 02b11de5e6c77cacd32adb6c82a5a850db7e4da8 /gcc/java/jcf-parse.c | |
parent | 2203610302a49bd13423676ab292ddefc6e1219c (diff) | |
download | gcc-357351e5a702dde74fbccf7ba88027e166b0111c.zip gcc-357351e5a702dde74fbccf7ba88027e166b0111c.tar.gz gcc-357351e5a702dde74fbccf7ba88027e166b0111c.tar.bz2 |
c-decl.c (duplicate_decls, [...]): Remove trailing period from diagnostics.
* c-decl.c (duplicate_decls, parmlist_tags_warning): Remove
trailing period from diagnostics.
* c-lex.c (cb_file_change): Similarly.
* cppmacro.c (check_trad_stringification): Similarly.
* gcc.c (do_spec_1): Similarly.
* genattr.c (main): Similarly.
* genattrtab.c (main, operate_exp, make_length_attrs): Similarly.
* gencodes.c (main): Similarly.
* genconfig.c (main): Similarly.
* genconstants.c (main): Similarly.
* genemit.c (main): Similarly.
* genextract.c (main): Similarly.
* genopinit.c (main): Similarly.
* genoutput.c (main): Similarly.
* genpeep.c (main): Similarly.
* genrecog.c (main): Similarly.
* mips-tfile.c (add_file, error): Similarly.
* profile.c (init_branch_prob): Similarly.
* reload1.c (spill_failure): Similarly.
* stmt.c (parse_output_constraint): Similarly.
* varasm.c (assemble_variable): Similarly.
cp:
* class.c (finish_struct): Similarly.
* decl.c (check_tag_decl): Similarly.
* lex.c (cxx_set_yydebug): Similarly.
* typeck2.c (friendly_abort): Similarly.
java:
* expr.c (expand_byte_code): Similarly.
* jcf-parse.c (load_class, jcf_parse): Similarly.
* jcf-write.c (generate_classfile): Similarly.
* lex.c (java_lex): Similarly.
From-SVN: r47517
Diffstat (limited to 'gcc/java/jcf-parse.c')
-rw-r--r-- | gcc/java/jcf-parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/java/jcf-parse.c b/gcc/java/jcf-parse.c index ec76e81..b52d7b1 100644 --- a/gcc/java/jcf-parse.c +++ b/gcc/java/jcf-parse.c @@ -682,7 +682,7 @@ load_class (class_or_name, verbose) } if (!class_loaded && verbose) - error ("Cannot find file for class %s.", IDENTIFIER_POINTER (saved)); + error ("Cannot find file for class %s", IDENTIFIER_POINTER (saved)); } /* Parse the .class file JCF. */ @@ -750,7 +750,7 @@ jcf_parse (jcf) -fforce-classes-archive-check was specified. */ if (!jcf->right_zip && (!flag_emit_class_files || flag_force_classes_archive_check)) - fatal_error ("The `java.lang.Object' that was found in `%s' didn't have the special zero-length `gnu.gcj.gcj-compiled' attribute. This generally means that your classpath is incorrect set. Use `info gcj \"Input Options\"' to see the info page describing how to set the classpath.", jcf->filename); + fatal_error ("The `java.lang.Object' that was found in `%s' didn't have the special zero-length `gnu.gcj.gcj-compiled' attribute. This generally means that your classpath is incorrectly set. Use `info gcj \"Input Options\"' to see the info page describing how to set the classpath.", jcf->filename); } else all_class_list = tree_cons (NULL_TREE, |