diff options
author | Alan Matsuoka <alanm@gcc.gnu.org> | 2001-11-14 20:17:08 +0000 |
---|---|---|
committer | Alan Matsuoka <alanm@gcc.gnu.org> | 2001-11-14 20:17:08 +0000 |
commit | 04d8aa70d552a552e39fa0afef50d22263253ec4 (patch) | |
tree | 7e7026a3d373191f37d9ff6e97e059f2d8c5096d /gcc/genrecog.c | |
parent | 497786446ba35ea6814862bcd76851e1379653ab (diff) | |
download | gcc-04d8aa70d552a552e39fa0afef50d22263253ec4.tar.gz |
rtl.def (INCLUDE): Define.
2001-11-05 Alan Matsuoka <alanm@redhat.com>
* rtl.def (INCLUDE) : Define.
* gensupport.c (init_include_reader, process_include,
save_string) : New functions to implement an include facility
in .md files.
* gensupport.h : Add prototype for init_md_reader_args. *
genattr.c genattrtab.c gencodes.c genconfig.c genemit.c
genextract.c genflags.c genopinit.c genoutput.c
genpeep.c genrecog.c: Change call to init_md_reader to
init_md_reader_args.
* md.texi: Document (include "path") and -I directives for RTL
generation tools.
From-SVN: r47020
Diffstat (limited to 'gcc/genrecog.c')
-rw-r--r-- | gcc/genrecog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/genrecog.c b/gcc/genrecog.c index f2e6b28da24..0e7356bdab4 100644 --- a/gcc/genrecog.c +++ b/gcc/genrecog.c @@ -2689,7 +2689,7 @@ main (argc, argv) if (argc <= 1) fatal ("No input file name."); - if (init_md_reader (argv[1]) != SUCCESS_EXIT_CODE) + if (init_md_reader_args (argc, argv) != SUCCESS_EXIT_CODE) return (FATAL_EXIT_CODE); next_insn_code = 0; |