diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2004-08-03 23:30:45 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2004-08-03 23:30:45 +0000 |
commit | f9942f4e14ff2f47c29638078db93c0ba8e7b54e (patch) | |
tree | 21207c8bff549bcb22ce42b1506218236d280593 /gcc/genoutput.c | |
parent | 9cbe78fbeb3898ab7f59faba4f027f9fd0a1a4ee (diff) | |
download | gcc-f9942f4e14ff2f47c29638078db93c0ba8e7b54e.tar.gz |
gensupport.c (init_md_reader_args_cb): Renamed from init_md_reader_args.
* gensupport.c (init_md_reader_args_cb): Renamed from
init_md_reader_args. Add third option, callback function for
parsing program-specific options. Add diagnosis of incorrect
number of input files.
(init_md_reader): Fold into init_md_reader_args_cb.
(init_md_reader_args): Now a thin wrapper around
init_md_reader_args_cb.
* gensupport.h: Update prototypes.
* genattr.c, genattrtab.c, gencodes.c, genconfig.c, genemit.c
* genextract.c, genflags.c, genopinit.c, genoutput.c, genpeep.c
* genrecog.c: No need to diagnose lack of an input file;
init_md_reader_args will handle it.
* genconditions.c: Likewise, and use init_md_reader_args.
* genconstants.c: Likewise, and no need to call read_md_rtx.
From-SVN: r85511
Diffstat (limited to 'gcc/genoutput.c')
-rw-r--r-- | gcc/genoutput.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/genoutput.c b/gcc/genoutput.c index 44bc412d488..112017d8cbd 100644 --- a/gcc/genoutput.c +++ b/gcc/genoutput.c @@ -982,9 +982,6 @@ main (int argc, char **argv) progname = "genoutput"; - if (argc <= 1) - fatal ("no input file name"); - if (init_md_reader_args (argc, argv) != SUCCESS_EXIT_CODE) return (FATAL_EXIT_CODE); |