Commit 3a5a9edc by Per Bothner Committed by Per Bothner

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
parent c19814b6
2001-05-18 Per Bothner <per@bothner.com>
Changes needed for java/jvspec.c
* gcc.h (n_infiles, outfiles): Add declarations.
* gcc.c (n_infiles, outfiles): Mske no longer static.
Fri May 18 10:14:42 2001 Jeffrey A Law (law@cygnus.com)
* config/pa/som.h (EXCEPTION_SECTION): Define.
......
......@@ -2804,7 +2804,7 @@ struct infile
static struct infile *infiles;
static int n_infiles;
int n_infiles;
/* This counts the number of libraries added by lang_specific_driver, so that
we can tell if there were any user supplied any files or libraries. */
......@@ -2813,7 +2813,7 @@ static int added_libraries;
/* And a vector of corresponding output files is made up later. */
static const char **outfiles;
const char **outfiles;
/* Used to track if none of the -B paths are used. */
static int warn_B;
......
......@@ -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__ */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment