diff options
author | Per Bothner <per@bothner.com> | 2001-05-18 11:30:40 -0700 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 2001-05-18 11:30:40 -0700 |
commit | 3a5a9edc34b1d170c5f342f2eb2f3210a4252e55 (patch) | |
tree | ade8cbb40ea184cc92c2c29d949375e0bad35a18 /gcc/gcc.h | |
parent | c19814b6070c1a4f7daf4192851c516239da82c9 (diff) | |
download | gcc-3a5a9edc34b1d170c5f342f2eb2f3210a4252e55.tar.gz |
Changes needed for java/jvspec.c
Changes needed for java/jvspec.c
* gcc.h (n_infiles, outfiles): Add declarations.
* gcc.c (n_infiles, outfiles): Mske no longer static.
From-SVN: r42269
Diffstat (limited to 'gcc/gcc.h')
-rw-r--r-- | gcc/gcc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/gcc.h b/gcc/gcc.h index 1c782c73bb6..d92db458cea 100644 --- a/gcc/gcc.h +++ b/gcc/gcc.h @@ -42,7 +42,13 @@ extern void lang_specific_driver PARAMS ((int *, const char *const **, int *)); /* Called before linking. Returns 0 on success and -1 on failure. */ extern int lang_specific_pre_link PARAMS ((void)); +extern int n_infiles; + /* Number of extra output files that lang_specific_pre_link may generate. */ extern int lang_specific_extra_outfiles; +/* A vector of corresponding output files is made up later. */ + +extern const char **outfiles; + #endif /* ! __GCC_H__ */ |