diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-24 03:36:22 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-24 03:36:22 +0000 |
commit | 6244983b3904a63da7c552dd34b9555f17521569 (patch) | |
tree | ca30d7b4227b164e4610e5be9057de02ea1f403c /gcc/java/parse.h | |
parent | 489283da0b645bfca8088fca16d25668014180dd (diff) | |
download | gcc-6244983b3904a63da7c552dd34b9555f17521569.tar.gz |
Handle compiling multiple input files at once, and @FILE syntax.
* gcj.texi: Updated documentation to match.
and parse.h inadvertently left out from previous check-in.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40026 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/parse.h')
-rw-r--r-- | gcc/java/parse.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/java/parse.h b/gcc/java/parse.h index dc2590708ce..336c2fdbc9d 100644 --- a/gcc/java/parse.h +++ b/gcc/java/parse.h @@ -780,10 +780,6 @@ struct parser_ctxt { tree package; /* Defined package ID */ - /* Those two list are saved accross file traversal */ - tree incomplete_class; /* List of non-complete classes */ - tree gclass_list; /* All classes seen from source code */ - /* These two lists won't survive file traversal */ tree class_list; /* List of classes in a CU */ jdeplist *classd_list; /* Classe dependencies in a CU */ @@ -947,4 +943,7 @@ ATTRIBUTE_NORETURN #endif ; extern void java_expand_classes PARAMS ((void)); + +extern struct parser_ctxt *ctxp; +struct parser_ctxt *ctxp_for_generation; #endif |