diff options
author | David Malcolm <dmalcolm@redhat.com> | 2015-01-09 21:45:33 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2015-01-09 21:45:33 +0000 |
commit | 860e981ce96b322ed991c4a1744f588917e5b268 (patch) | |
tree | 4610da322493613248643b5a83dd8c5af26a1e35 /gcc/jit/dummy-frontend.c | |
parent | 1b34e6e25062154c9a978785902db3a3326234eb (diff) | |
download | gcc-860e981ce96b322ed991c4a1744f588917e5b268.zip gcc-860e981ce96b322ed991c4a1744f588917e5b268.tar.gz gcc-860e981ce96b322ed991c4a1744f588917e5b268.tar.bz2 |
Fix the jit build after header flattening of r219402
gcc/jit/ChangeLog:
* dummy-frontend.c: Include "fixed-value.h", "alias.h", "flags.h",
"symtab.h", "inchash.h". Move include of "hash-set.h" much
earlier.
* jit-builtins.c: Remove redundant includes of "opts.h" and
"tree.h".
* jit-common.h: Include "hash-set.h", "input.h", "vec.h",
"double-int.h", "alias.h", "flags.h", "symtab.h", "inchash.h".
* jit-playback.c: Include "hashtab.h", "machmode.h", "input.h",
"statistics.h", "vec.h", "double-int.h", "real.h",
"fixed-value.h", "alias.h", "flags.h", "symtab.h", "tree-core.h",
"inchash.h", "fold-const.h". Move include of "hash-set.h" to
earlier.
* jit-recording.c: Remove redundant includes of "opts.h" and
"tree.h".
From-SVN: r219411
Diffstat (limited to 'gcc/jit/dummy-frontend.c')
-rw-r--r-- | gcc/jit/dummy-frontend.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/jit/dummy-frontend.c b/gcc/jit/dummy-frontend.c index 23883ad..a4dae3e 100644 --- a/gcc/jit/dummy-frontend.c +++ b/gcc/jit/dummy-frontend.c @@ -22,8 +22,14 @@ along with GCC; see the file COPYING3. If not see #include "coretypes.h" #include "opts.h" #include "signop.h" +#include "hash-set.h" +#include "fixed-value.h" +#include "alias.h" +#include "flags.h" +#include "symtab.h" #include "tree-core.h" #include "stor-layout.h" +#include "inchash.h" #include "tree.h" #include "debug.h" #include "langhooks.h" @@ -33,7 +39,6 @@ along with GCC; see the file COPYING3. If not see #include "plugin-api.h" #include "vec.h" #include "hashtab.h" -#include "hash-set.h" #include "machmode.h" #include "tm.h" #include "hard-reg-set.h" |