diff options
author | Rafael Avila de Espindola <espindola@google.com> | 2009-04-17 21:11:46 +0000 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2009-04-17 17:11:46 -0400 |
commit | 5a691e986280aa2d53b49f95b71170ff28a76703 (patch) | |
tree | 77f7ad02352b14c374885d01832263369b4fe32c /gcc/toplev.h | |
parent | 9eacf7a62a6c26d070718471112637a4400f9859 (diff) | |
download | gcc-5a691e986280aa2d53b49f95b71170ff28a76703.zip gcc-5a691e986280aa2d53b49f95b71170ff28a76703.tar.gz gcc-5a691e986280aa2d53b49f95b71170ff28a76703.tar.bz2 |
re PR other/31567 (cc1, cc1plus, etc. don't support @file mechanism)
PR 31567
* gcc.c (create_at_file): New.
(compile_input_file_p): New.
(do_spec_1): Use @args files for %i. Use create_at_file for %o.
* main.c (main): Update call to toplev_main.
* toplev.c (toplev_main): Change signature. Call expandargv.
* toplev.h (toplev_main): Change signature.
From-SVN: r146292
Diffstat (limited to 'gcc/toplev.h')
-rw-r--r-- | gcc/toplev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.h b/gcc/toplev.h index 2324b06..15180c3 100644 --- a/gcc/toplev.h +++ b/gcc/toplev.h @@ -27,7 +27,7 @@ along with GCC; see the file COPYING3. If not see #define skip_leading_substring(whole, part) \ (strncmp (whole, part, strlen (part)) ? NULL : whole + strlen (part)) -extern int toplev_main (unsigned int, const char **); +extern int toplev_main (int, char **); extern int read_integral_parameter (const char *, const char *, const int); extern void strip_off_ending (char *, int); extern const char *trim_filename (const char *); |