diff options
Diffstat (limited to 'gcc/java')
-rw-r--r-- | gcc/java/boehm.c | 10 | ||||
-rw-r--r-- | gcc/java/builtins.c | 11 | ||||
-rw-r--r-- | gcc/java/class.c | 15 | ||||
-rw-r--r-- | gcc/java/constants.c | 10 | ||||
-rw-r--r-- | gcc/java/decl.c | 15 | ||||
-rw-r--r-- | gcc/java/except.c | 10 | ||||
-rw-r--r-- | gcc/java/expr.c | 12 | ||||
-rw-r--r-- | gcc/java/java-gimplify.c | 15 | ||||
-rw-r--r-- | gcc/java/jcf-dump.c | 10 | ||||
-rw-r--r-- | gcc/java/jcf-io.c | 10 | ||||
-rw-r--r-- | gcc/java/jcf-parse.c | 15 | ||||
-rw-r--r-- | gcc/java/jvgenmain.c | 10 | ||||
-rw-r--r-- | gcc/java/lang.c | 9 | ||||
-rw-r--r-- | gcc/java/mangle.c | 10 | ||||
-rw-r--r-- | gcc/java/mangle_name.c | 10 | ||||
-rw-r--r-- | gcc/java/resource.c | 15 | ||||
-rw-r--r-- | gcc/java/typeck.c | 11 | ||||
-rw-r--r-- | gcc/java/verify-glue.c | 10 | ||||
-rw-r--r-- | gcc/java/verify-impl.c | 10 |
19 files changed, 196 insertions, 22 deletions
diff --git a/gcc/java/boehm.c b/gcc/java/boehm.c index fed2dd3..897f07d 100644 --- a/gcc/java/boehm.c +++ b/gcc/java/boehm.c @@ -28,11 +28,19 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "coretypes.h" #include "double-int.h" #include "tm.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "options.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" #include "java-tree.h" #include "parse.h" #include "diagnostic-core.h" -#include "wide-int.h" static void mark_reference_fields (tree, wide_int *, unsigned int, int *, int *, int *, HOST_WIDE_INT *); diff --git a/gcc/java/builtins.c b/gcc/java/builtins.c index 0119efe..ee1ac60 100644 --- a/gcc/java/builtins.c +++ b/gcc/java/builtins.c @@ -30,7 +30,18 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "system.h" #include "coretypes.h" #include "tm.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "options.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" +#include "fold-const.h" #include "stor-layout.h" #include "stringpool.h" #include "ggc.h" diff --git a/gcc/java/class.c b/gcc/java/class.c index 6a61a0e..a3a8342 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -26,7 +26,18 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "config.h" #include "system.h" #include "coretypes.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "options.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" +#include "fold-const.h" #include "stringpool.h" #include "stor-layout.h" #include "varasm.h" @@ -38,10 +49,6 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "toplev.h" #include "output.h" /* for switch_to_section and get_section */ #include "parse.h" -#include "hashtab.h" -#include "hash-set.h" -#include "vec.h" -#include "machmode.h" #include "tm.h" #include "hard-reg-set.h" #include "input.h" diff --git a/gcc/java/constants.c b/gcc/java/constants.c index 70b8468..5b4b3fb 100644 --- a/gcc/java/constants.c +++ b/gcc/java/constants.c @@ -25,7 +25,17 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "coretypes.h" #include "tm.h" #include "jcf.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" +#include "fold-const.h" #include "stringpool.h" #include "stor-layout.h" #include "java-tree.h" diff --git a/gcc/java/decl.c b/gcc/java/decl.c index 0c0ad52..72133b4 100644 --- a/gcc/java/decl.c +++ b/gcc/java/decl.c @@ -27,6 +27,17 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "config.h" #include "system.h" #include "coretypes.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "options.h" +#include "real.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" #include "stor-layout.h" #include "stringpool.h" @@ -41,10 +52,6 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #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" diff --git a/gcc/java/except.c b/gcc/java/except.c index 3b30e76..6dc0108 100644 --- a/gcc/java/except.c +++ b/gcc/java/except.c @@ -25,7 +25,17 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "system.h" #include "coretypes.h" #include "tm.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" +#include "fold-const.h" #include "stringpool.h" #include "stor-layout.h" #include "java-tree.h" diff --git a/gcc/java/expr.c b/gcc/java/expr.c index bbd3de3..81ae8da 100644 --- a/gcc/java/expr.c +++ b/gcc/java/expr.c @@ -32,7 +32,18 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ MODIFY_JNI_METHOD_CALL and PARM_BOUNDARY. */ +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "wide-int.h" +#include "inchash.h" +#include "real.h" #include "tree.h" +#include "fold-const.h" #include "stringpool.h" #include "stor-layout.h" #include "flags.h" @@ -46,7 +57,6 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "ggc.h" #include "tree-iterator.h" #include "target.h" -#include "wide-int.h" static void flush_quick_stack (void); static void push_value (tree); diff --git a/gcc/java/java-gimplify.c b/gcc/java/java-gimplify.c index 3437c6f..2a1ea76 100644 --- a/gcc/java/java-gimplify.c +++ b/gcc/java/java-gimplify.c @@ -24,14 +24,21 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "config.h" #include "system.h" #include "coretypes.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "options.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" +#include "fold-const.h" #include "java-tree.h" #include "dumpfile.h" #include "predict.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" diff --git a/gcc/java/jcf-dump.c b/gcc/java/jcf-dump.c index 1fa5bd4..52cfc58 100644 --- a/gcc/java/jcf-dump.c +++ b/gcc/java/jcf-dump.c @@ -54,6 +54,16 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "diagnostic.h" #include "jcf.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "options.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" #include "java-tree.h" diff --git a/gcc/java/jcf-io.c b/gcc/java/jcf-io.c index 07e62cb..2c48f14 100644 --- a/gcc/java/jcf-io.c +++ b/gcc/java/jcf-io.c @@ -28,6 +28,16 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "coretypes.h" #include "jcf.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "options.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" #include "java-tree.h" #include "hash-table.h" diff --git a/gcc/java/jcf-parse.c b/gcc/java/jcf-parse.c index 65043f7f..02e23c4 100644 --- a/gcc/java/jcf-parse.c +++ b/gcc/java/jcf-parse.c @@ -26,6 +26,17 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "config.h" #include "system.h" #include "coretypes.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "options.h" +#include "real.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" #include "stringpool.h" #include "obstack.h" @@ -41,10 +52,6 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #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" diff --git a/gcc/java/jvgenmain.c b/gcc/java/jvgenmain.c index e4b99da..fa31937 100644 --- a/gcc/java/jvgenmain.c +++ b/gcc/java/jvgenmain.c @@ -28,6 +28,16 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "coretypes.h" #include "obstack.h" #include "jcf.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "options.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" #include "java-tree.h" #include "intl.h" diff --git a/gcc/java/lang.c b/gcc/java/lang.c index e28ab5e..dac322d 100644 --- a/gcc/java/lang.c +++ b/gcc/java/lang.c @@ -27,6 +27,15 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "system.h" #include "coretypes.h" #include "tm.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" #include "input.h" #include "java-tree.h" diff --git a/gcc/java/mangle.c b/gcc/java/mangle.c index 9bfe65c..8c0c009 100644 --- a/gcc/java/mangle.c +++ b/gcc/java/mangle.c @@ -28,6 +28,16 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "system.h" #include "coretypes.h" #include "jcf.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "options.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" #include "stringpool.h" #include "java-tree.h" diff --git a/gcc/java/mangle_name.c b/gcc/java/mangle_name.c index 9e08312..53eb926 100644 --- a/gcc/java/mangle_name.c +++ b/gcc/java/mangle_name.c @@ -28,6 +28,16 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "system.h" #include "coretypes.h" #include "jcf.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "options.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" #include "java-tree.h" #include "obstack.h" diff --git a/gcc/java/resource.c b/gcc/java/resource.c index e03f4f4..537bdb2 100644 --- a/gcc/java/resource.c +++ b/gcc/java/resource.c @@ -24,7 +24,18 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "config.h" #include "system.h" #include "coretypes.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "options.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" +#include "fold-const.h" #include "stringpool.h" #include "stor-layout.h" #include "java-tree.h" @@ -32,10 +43,6 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "diagnostic-core.h" #include "toplev.h" #include "parse.h" -#include "hashtab.h" -#include "hash-set.h" -#include "vec.h" -#include "machmode.h" #include "tm.h" #include "hard-reg-set.h" #include "input.h" diff --git a/gcc/java/typeck.c b/gcc/java/typeck.c index 68b6d52..0da6380 100644 --- a/gcc/java/typeck.c +++ b/gcc/java/typeck.c @@ -26,7 +26,18 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "config.h" #include "system.h" #include "coretypes.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "options.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" +#include "fold-const.h" #include "stor-layout.h" #include "stringpool.h" #include "obstack.h" diff --git a/gcc/java/verify-glue.c b/gcc/java/verify-glue.c index f5c6f5f..b682dfe 100644 --- a/gcc/java/verify-glue.c +++ b/gcc/java/verify-glue.c @@ -27,6 +27,16 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "system.h" #include "coretypes.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "options.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" #include "stringpool.h" #include "parse.h" diff --git a/gcc/java/verify-impl.c b/gcc/java/verify-impl.c index e225781..bbd4097 100644 --- a/gcc/java/verify-impl.c +++ b/gcc/java/verify-impl.c @@ -15,6 +15,16 @@ details. */ #include "system.h" #include "coretypes.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "options.h" +#include "wide-int.h" +#include "inchash.h" #include "verify.h" /* Hack to work around namespace pollution from java-tree.h. */ |