diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-19 21:57:37 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-19 21:57:37 +0000 |
commit | cb18c57217fe0631c7f0424508949a974d866681 (patch) | |
tree | 43b6051fb4c61f97cc997150ff09dfbcd993c639 /gcc/java/jcf.h | |
parent | c130a6e22fc66c3065cbbf60ce41dc6a08f79e1b (diff) | |
download | gcc-cb18c57217fe0631c7f0424508949a974d866681.tar.gz |
Fixes to process to command-line .class files in two passes. See ChangeLog.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40637 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/jcf.h')
-rw-r--r-- | gcc/java/jcf.h | 6 |
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. */ |