diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-12-16 18:23:00 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-12-16 18:23:00 +0000 |
commit | 805e22b2051e9c6a75377ea6599654d7415da483 (patch) | |
tree | c259697c448b0c6f548f153c48c46a8d7a75970f /gcc/genconditions.c | |
parent | 2c27ce73ee2229b0871c4ccad2342d8a4be85eff (diff) | |
download | gcc-805e22b2051e9c6a75377ea6599654d7415da483.tar.gz |
Merge basic-improvements-branch to trunk
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60174 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genconditions.c')
-rw-r--r-- | gcc/genconditions.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/genconditions.c b/gcc/genconditions.c index 02f80ee478d..bc52cb3fc67 100644 --- a/gcc/genconditions.c +++ b/gcc/genconditions.c @@ -26,8 +26,10 @@ most of the programs that generate code from the machine description can simply ignore the entire pattern. */ -#include "hconfig.h" +#include "bconfig.h" #include "system.h" +#include "coretypes.h" +#include "tm.h" #include "rtl.h" #include "errors.h" #include "hashtab.h" @@ -73,7 +75,7 @@ write_header () /* Generated automatically by the program `genconditions' from the target\n\ machine description file. */\n\ \n\ -#include \"hconfig.h\"\n\ +#include \"bconfig.h\"\n\ #include \"insn-constants.h\"\n"); puts ("\ @@ -87,6 +89,8 @@ write_header () puts ("\ #include \"system.h\"\n\ +#include \"coretypes.h\"\n\ +#include \"tm.h\"\n\ #include \"rtl.h\"\n\ #include \"tm_p.h\"\n\ #include \"function.h\"\n"); |