From 664c5888764faa174b1b21c3b23b3f575bfc1355 Mon Sep 17 00:00:00 2001 From: rsandifo Date: Thu, 10 Jun 2010 20:23:23 +0000 Subject: gcc/ * Makefile.in (BUILD_RTL): Move build/read-md.o to... (BUILD_MD): ...this new variable. (simple_generated_rtl_h, simple_generated_rtl_c): New variables that include the old contents of simple_generated_h and simple_generated_c. (simple_generated_h, simple_generated_c): Include them. Add insn-constants.h. (s-%): Make simple_generated_{h,c} stamps depend on $(MD_DEPS) and simple_generated_rtl_{h,c} stamps depend on insn-conditions.md. Remove these dependencies from the main rule and include insn-conditions.md in the command line only if it appears in the dependency list. (insn-constants.h, s-constants): Delete. (build/genconstants.o): Don't depend on $(RTL_BASE_H), $(GTM_H) or gensupport.h. (build/genmddeps.o): Likewise. (genprogrtl): New variable that contains everything from genprogmd except mddeps and constants. (genprogmd): Redefine in terms of genprogrtl. Make these programs depend on $(BUILD_MD) (genprog): New variable. Make these programs depend on $(BUILD_ERRORS). * genmddeps.c: Don't include tm.h, rtl.h or gensupport.h. (main): Use read_md_files instead of init_rtx_reader_args. * genconstants.c: As for genmddeps.c. * read-md.h (read_skip_construct): Declare. * read-md.c (read_skip_construct): New function. (handle_file): Allow a null handle_directive, skipping the construct if so. (parse_include): Update the comment accordingly. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@160578 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/genmddeps.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'gcc/genmddeps.c') diff --git a/gcc/genmddeps.c b/gcc/genmddeps.c index f9fdacb4a95..15311eeaed6 100644 --- a/gcc/genmddeps.c +++ b/gcc/genmddeps.c @@ -18,11 +18,8 @@ #include "bconfig.h" #include "system.h" #include "coretypes.h" -#include "tm.h" -#include "rtl.h" #include "errors.h" #include "read-md.h" -#include "gensupport.h" struct filedep @@ -50,8 +47,8 @@ main (int argc, char **argv) progname = "genmddeps"; include_callback = add_filedep; - if (!init_rtx_reader_args (argc, argv)) - return (FATAL_EXIT_CODE); + if (!read_md_files (argc, argv, NULL, NULL)) + return FATAL_EXIT_CODE; *last = NULL; -- cgit v1.2.1