diff options
Diffstat (limited to 'gcc/java')
-rw-r--r-- | gcc/java/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/java/jcf-io.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index c5fcd79..d28b513 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -8,6 +8,12 @@ * zipfile.h (ZipDirectory): Declare size, uncompressed_size, filestart and filename_length as int values. +2000-12-07 Mo DeJong <mdejong@redhat.com> + + * jcf-io.c (find_class): Correct the logic that tests to see if a + .java file is newer than its .class file. The compiler was + incorrectly printing a warning when file mod times were equal. + 2000-12-07 Zack Weinberg <zack@wolery.stanford.edu> * jvgenmain.c: Use ISPRINT not isascii. diff --git a/gcc/java/jcf-io.c b/gcc/java/jcf-io.c index 03ea7d7..71b893c 100644 --- a/gcc/java/jcf-io.c +++ b/gcc/java/jcf-io.c @@ -394,7 +394,7 @@ DEFUN(find_class, (classname, classname_length, jcf, source_ok), source file instead. There should be a flag to allow people have the class file picked up no matter what. FIXME. */ - if (! java && ! class && java_buf.st_mtime >= class_buf.st_mtime) + if (! java && ! class && java_buf.st_mtime > class_buf.st_mtime) { char *stripped_class_name = xstrdup (classname); int i = strlen (stripped_class_name); |