diff options
Diffstat (limited to 'gcc/java/builtins.c')
-rw-r--r-- | gcc/java/builtins.c | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/gcc/java/builtins.c b/gcc/java/builtins.c index f10227f19e1..7f6d74573a8 100644 --- a/gcc/java/builtins.c +++ b/gcc/java/builtins.c @@ -30,31 +30,28 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "system.h" #include "coretypes.h" #include "tm.h" -#include "alias.h" +#include "function.h" +#include "rtl.h" #include "tree.h" -#include "options.h" +#include "stringpool.h" +#include "expmed.h" +#include "optabs.h" +#include "emit-rtl.h" +#include "alias.h" #include "fold-const.h" #include "stor-layout.h" -#include "stringpool.h" #include "flags.h" #include "langhooks.h" #include "java-tree.h" /* FIXME: All these headers are necessary for sync_compare_and_swap. Front ends should never have to look at that. */ -#include "rtl.h" -#include "insn-codes.h" -#include "function.h" -#include "insn-config.h" -#include "expmed.h" #include "dojump.h" #include "explow.h" #include "calls.h" -#include "emit-rtl.h" #include "varasm.h" #include "stmt.h" #include "expr.h" -#include "optabs.h" static tree max_builtin (tree, tree); static tree min_builtin (tree, tree); |