summaryrefslogtreecommitdiff
path: root/gcc/gcc.h
diff options
context:
space:
mode:
authorbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>2001-05-18 18:30:40 +0000
committerbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>2001-05-18 18:30:40 +0000
commit943bf3c71fc70451d125c77a8d65af8d93ca1428 (patch)
treeade8cbb40ea184cc92c2c29d949375e0bad35a18 /gcc/gcc.h
parent9bd09181f0ec5b5d20a703a7426b708e8923262c (diff)
downloadgcc-943bf3c71fc70451d125c77a8d65af8d93ca1428.tar.gz
Changes needed for java/jvspec.c
* gcc.h (n_infiles, outfiles): Add declarations. * gcc.c (n_infiles, outfiles): Mske no longer static. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42269 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcc.h')
-rw-r--r--gcc/gcc.h6
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__ */