diff options
Diffstat (limited to 'gcc/java')
-rw-r--r-- | gcc/java/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/java/class.c | 4 | ||||
-rw-r--r-- | gcc/java/decl.c | 13 | ||||
-rw-r--r-- | gcc/java/jcf-parse.c | 11 | ||||
-rw-r--r-- | gcc/java/resource.c | 4 |
5 files changed, 38 insertions, 1 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 6d3813e7935..731d2d43f94 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,10 @@ +2014-10-28 Andrew MacLeod <amacleod@redhat.com> + + * class.c: Adjust include files. + * decl.c: Ditto. + * jcf-parse.c: Ditto. + * resource.c: Ditto. + 2014-10-27 Andrew MacLeod <amacleod@redhat.com> * java-gimplify.c: Adjust include files. diff --git a/gcc/java/class.c b/gcc/java/class.c index 2c29a44837c..7597af75d63 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -47,6 +47,10 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "input.h" #include "function.h" #include "ggc.h" +#include "hash-map.h" +#include "is-a.h" +#include "plugin-api.h" +#include "ipa-ref.h" #include "cgraph.h" #include "tree-iterator.h" #include "target.h" diff --git a/gcc/java/decl.c b/gcc/java/decl.c index 7271ea70aba..fbd09a3d089 100644 --- a/gcc/java/decl.c +++ b/gcc/java/decl.c @@ -38,13 +38,24 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "jcf.h" #include "java-except.h" #include "ggc.h" +#include "hash-map.h" +#include "is-a.h" +#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" +#include "input.h" +#include "function.h" +#include "ipa-ref.h" #include "cgraph.h" #include "tree-inline.h" #include "target.h" #include "version.h" #include "tree-iterator.h" #include "langhooks.h" -#include "cgraph.h" #if defined (DEBUG_JAVA_BINDING_LEVELS) extern void indent (void); diff --git a/gcc/java/jcf-parse.c b/gcc/java/jcf-parse.c index 9c4a9cf8be6..a94b15110a7 100644 --- a/gcc/java/jcf-parse.c +++ b/gcc/java/jcf-parse.c @@ -38,6 +38,17 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "parse.h" #include "ggc.h" #include "debug.h" +#include "hash-map.h" +#include "is-a.h" +#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" +#include "function.h" +#include "ipa-ref.h" #include "cgraph.h" #include "bitmap.h" #include "target.h" diff --git a/gcc/java/resource.c b/gcc/java/resource.c index bc9e029a679..c0a9249bf9c 100644 --- a/gcc/java/resource.c +++ b/gcc/java/resource.c @@ -42,6 +42,10 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "function.h" #include "ggc.h" #include "tree-iterator.h" +#include "hash-map.h" +#include "is-a.h" +#include "plugin-api.h" +#include "ipa-ref.h" #include "cgraph.h" /* A list of all the resources files. */ |