diff options
Diffstat (limited to 'gcc/jit')
-rw-r--r-- | gcc/jit/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/jit/dummy-frontend.c | 4 | ||||
-rw-r--r-- | gcc/jit/jit-common.h | 3 | ||||
-rw-r--r-- | gcc/jit/jit-playback.c | 4 |
4 files changed, 9 insertions, 8 deletions
diff --git a/gcc/jit/ChangeLog b/gcc/jit/ChangeLog index dbead11e0e2..6fdcb604623 100644 --- a/gcc/jit/ChangeLog +++ b/gcc/jit/ChangeLog @@ -1,3 +1,9 @@ +2015-07-07 Andrew MacLeod <amacleod@redhat.com> + + * dummy-frontend.c: Adjust includes. + * jit-common.h: Likewise. + * jit-playback.c: Likewise. + 2015-07-07 David Malcolm <dmalcolm@redhat.com> PR jit/66783 diff --git a/gcc/jit/dummy-frontend.c b/gcc/jit/dummy-frontend.c index 3ddab5084ff..3d0b3ea7640 100644 --- a/gcc/jit/dummy-frontend.c +++ b/gcc/jit/dummy-frontend.c @@ -23,11 +23,9 @@ along with GCC; see the file COPYING3. If not see #include "opts.h" #include "alias.h" #include "flags.h" -#include "symtab.h" -#include "tree-core.h" +#include "tree.h" #include "stor-layout.h" #include "inchash.h" -#include "tree.h" #include "debug.h" #include "langhooks.h" #include "langhooks-def.h" diff --git a/gcc/jit/jit-common.h b/gcc/jit/jit-common.h index 3397215bc91..28ce2bcb4e9 100644 --- a/gcc/jit/jit-common.h +++ b/gcc/jit/jit-common.h @@ -25,9 +25,8 @@ along with GCC; see the file COPYING3. If not see #include "vec.h" #include "flags.h" -#include "symtab.h" -#include "inchash.h" #include "tree.h" +#include "inchash.h" #include "tree-iterator.h" #ifdef GCC_VERSION diff --git a/gcc/jit/jit-playback.c b/gcc/jit/jit-playback.c index 1fe1091f7d3..2b99c49613f 100644 --- a/gcc/jit/jit-playback.c +++ b/gcc/jit/jit-playback.c @@ -27,10 +27,8 @@ along with GCC; see the file COPYING3. If not see #include "vec.h" #include "alias.h" #include "flags.h" -#include "symtab.h" -#include "tree-core.h" -#include "inchash.h" #include "tree.h" +#include "inchash.h" #include "hash-map.h" #include "vec.h" #include "hashtab.h" |