aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>2015-01-20 09:02:56 +0000
committerPrathamesh Kulkarni <prathamesh3492@gcc.gnu.org>2015-01-20 09:02:56 +0000
commit42df23a65ee2b93425c2627f3d312dcfe7fcf122 (patch)
treefd871fc5aaa2c9982c6e1b24700a0a48d4e5a8ac /gcc
parent7002f3bd9ce16ae52d452718fc44b18572d31169 (diff)
downloadgcc-42df23a65ee2b93425c2627f3d312dcfe7fcf122.zip
gcc-42df23a65ee2b93425c2627f3d312dcfe7fcf122.tar.gz
gcc-42df23a65ee2b93425c2627f3d312dcfe7fcf122.tar.bz2
mul-tables.c: Move symtab.h include after coretypes.h include.
2015-01-20 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> * config/tilegx/mul-tables.c: Move symtab.h include after coretypes.h include. * config/tilepro/mul-tables.c: Add includes hashtab.h, hash-set.h, vec.h, machmode.h, tm.h, hard-reg-set.h, input.h, function.h, rtl.h, flags.h, statistics.h, double-int.h, real.h, fixed-value.h, alias.h, wide-int.h, inchash.h, tree.h, insn-config.h, expmed.h, dojump.h, explow.h, calls.h, emit-rtl.h, varasm.h, stmt.h. From-SVN: r219881
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog8
-rw-r--r--gcc/config/tilegx/mul-tables.c2
-rw-r--r--gcc/config/tilepro/mul-tables.c27
3 files changed, 36 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 1879743..4d1d145 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,11 @@
+2015-01-20 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
+
+ * config/tilegx/mul-tables.c: Move symtab.h include after coretypes.h include.
+ * config/tilepro/mul-tables.c: Add includes hashtab.h, hash-set.h, vec.h,
+ machmode.h, tm.h, hard-reg-set.h, input.h, function.h, rtl.h, flags.h, statistics.h,
+ double-int.h, real.h, fixed-value.h, alias.h, wide-int.h, inchash.h, tree.h,
+ insn-config.h, expmed.h, dojump.h, explow.h, calls.h, emit-rtl.h, varasm.h, stmt.h.
+
2015-01-20 Igor Zamyatin <igor.zamyatin@intel.com>
PR bootstrap/64676
diff --git a/gcc/config/tilegx/mul-tables.c b/gcc/config/tilegx/mul-tables.c
index 252ca08..6f5df47 100644
--- a/gcc/config/tilegx/mul-tables.c
+++ b/gcc/config/tilegx/mul-tables.c
@@ -24,6 +24,7 @@
#include "config.h"
#include "system.h"
#include "coretypes.h"
+#include "symtab.h"
#include "hashtab.h"
#include "hash-set.h"
#include "vec.h"
@@ -39,7 +40,6 @@
#include "real.h"
#include "fixed-value.h"
#include "alias.h"
-#include "symtab.h"
#include "wide-int.h"
#include "inchash.h"
#include "tree.h"
diff --git a/gcc/config/tilepro/mul-tables.c b/gcc/config/tilepro/mul-tables.c
index 78592d5..29ec555 100644
--- a/gcc/config/tilepro/mul-tables.c
+++ b/gcc/config/tilepro/mul-tables.c
@@ -24,6 +24,33 @@
#include "config.h"
#include "system.h"
#include "coretypes.h"
+#include "symtab.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"
+#include "function.h"
+#include "rtl.h"
+#include "flags.h"
+#include "statistics.h"
+#include "double-int.h"
+#include "real.h"
+#include "fixed-value.h"
+#include "alias.h"
+#include "wide-int.h"
+#include "inchash.h"
+#include "tree.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 "insn-codes.h"
#include "optabs.h"