diff options
author | Per Bothner <bothner@gcc.gnu.org> | 2001-03-19 13:57:37 -0800 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 2001-03-19 13:57:37 -0800 |
commit | 546468116ecab0398f68c844cdc553ae886aad7d (patch) | |
tree | 43b6051fb4c61f97cc997150ff09dfbcd993c639 /gcc/java/class.c | |
parent | e7ce60a8607279aa6312b7852c3477033596d0c4 (diff) | |
download | gcc-546468116ecab0398f68c844cdc553ae886aad7d.zip gcc-546468116ecab0398f68c844cdc553ae886aad7d.tar.gz gcc-546468116ecab0398f68c844cdc553ae886aad7d.tar.bz2 |
Fixes to process to command-line .class files in two passes. See ChangeLog.
From-SVN: r40637
Diffstat (limited to 'gcc/java/class.c')
-rw-r--r-- | gcc/java/class.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/class.c b/gcc/java/class.c index 6fc4cace4..4114271 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -1527,7 +1527,7 @@ is_compiled_class (class) return 2; seen_in_zip = (TYPE_JCF (class) && JCF_SEEN_IN_ZIP (TYPE_JCF (class))); - if (CLASS_FROM_CURRENTLY_COMPILED_SOURCE_P (class) || seen_in_zip) + if (CLASS_FROM_CURRENTLY_COMPILED_P (class) || seen_in_zip) { /* The class was seen in the current ZIP file and will be available as a compiled class in the future but may not have |