summaryrefslogtreecommitdiff
path: root/gcc/java/jcf.h
diff options
context:
space:
mode:
authorPer Bothner <bothner@gcc.gnu.org>2001-03-19 13:57:37 -0800
committerPer Bothner <bothner@gcc.gnu.org>2001-03-19 13:57:37 -0800
commit546468116ecab0398f68c844cdc553ae886aad7d (patch)
tree43b6051fb4c61f97cc997150ff09dfbcd993c639 /gcc/java/jcf.h
parente7ce60a8607279aa6312b7852c3477033596d0c4 (diff)
downloadgcc-546468116ecab0398f68c844cdc553ae886aad7d.tar.gz
Fixes to process to command-line .class files in two passes. See ChangeLog.
From-SVN: r40637
Diffstat (limited to 'gcc/java/jcf.h')
-rw-r--r--gcc/java/jcf.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/java/jcf.h b/gcc/java/jcf.h
index 5bb53b05c46..6fb6c254dde 100644
--- a/gcc/java/jcf.h
+++ b/gcc/java/jcf.h
@@ -63,10 +63,6 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */
#define JCF_word JCF_u4
#endif
-#define JCF_ZIP 1
-#define JCF_CLASS 2
-#define JCF_SOURCE 3
-
struct JCF;
typedef int (*jcf_filbuf_t) PARAMS ((struct JCF*, int needed));
@@ -157,7 +153,7 @@ typedef struct JCF {
#define JCF_ZERO(JCF) \
((JCF)->buffer = (JCF)->buffer_end = (JCF)->read_ptr = (JCF)->read_end = 0,\
(JCF)->read_state = 0, (JCF)->filename = (JCF)->classname = 0, \
- CPOOL_INIT(&(JCF)->cpool), (JCF)->java_source = 0)
+ CPOOL_INIT(&(JCF)->cpool), (JCF)->java_source = 0, (JCF)->zipd = 0)
/* Given that PTR points to a 2-byte unsigned integer in network
(big-endian) byte-order, return that integer. */