aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/fortran')
-rw-r--r--gcc/fortran/ChangeLog24
-rw-r--r--gcc/fortran/convert.c1
-rw-r--r--gcc/fortran/cpp.c1
-rw-r--r--gcc/fortran/decl.c1
-rw-r--r--gcc/fortran/f95-lang.c3
-rw-r--r--gcc/fortran/gfortran.h1
-rw-r--r--gcc/fortran/iresolve.c1
-rw-r--r--gcc/fortran/match.c1
-rw-r--r--gcc/fortran/module.c1
-rw-r--r--gcc/fortran/options.c1
-rw-r--r--gcc/fortran/target-memory.c1
-rw-r--r--gcc/fortran/trans-array.c1
-rw-r--r--gcc/fortran/trans-common.c1
-rw-r--r--gcc/fortran/trans-const.c1
-rw-r--r--gcc/fortran/trans-decl.c3
-rw-r--r--gcc/fortran/trans-expr.c1
-rw-r--r--gcc/fortran/trans-intrinsic.c1
-rw-r--r--gcc/fortran/trans-io.c1
-rw-r--r--gcc/fortran/trans-openmp.c1
-rw-r--r--gcc/fortran/trans-stmt.c1
-rw-r--r--gcc/fortran/trans-types.c1
-rw-r--r--gcc/fortran/trans.c1
22 files changed, 24 insertions, 25 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 5ede14d..ee6b190 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,27 @@
+2015-06-17 Andrew MacLeod <amacleod@redhat.com>
+
+ * convert.c: Do not include input.h, line-map.h or is-a.h.
+ * cpp.c: Likewise.
+ * decl.c: Likewise.
+ * f95-lang.c: Likewise.
+ * gfortran.h: Likewise.
+ * iresolve.c: Likewise.
+ * match.c: Likewise.
+ * module.c: Likewise.
+ * options.c: Likewise.
+ * target-memory.c: Likewise.
+ * trans-array.c: Likewise.
+ * trans-common.c: Likewise.
+ * trans-const.c: Likewise.
+ * trans-decl.c: Likewise.
+ * trans-expr.c: Likewise.
+ * trans-intrinsic.c: Likewise.
+ * trans-io.c: Likewise.
+ * trans-openmp.c: Likewise.
+ * trans-stmt.c: Likewise.
+ * trans-types.c: Likewise.
+ * trans.c: Likewise.
+
2015-06-15 Andre Vehreschild <vehre@gmx.de>
PR fortran/44672
diff --git a/gcc/fortran/convert.c b/gcc/fortran/convert.c
index ff2fc3d..dfef05b 100644
--- a/gcc/fortran/convert.c
+++ b/gcc/fortran/convert.c
@@ -25,7 +25,6 @@ along with GCC; see the file COPYING3. If not see
#include "config.h"
#include "system.h"
#include "coretypes.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "options.h"
diff --git a/gcc/fortran/cpp.c b/gcc/fortran/cpp.c
index 9e98d25..363763f 100644
--- a/gcc/fortran/cpp.c
+++ b/gcc/fortran/cpp.c
@@ -20,7 +20,6 @@ along with GCC; see the file COPYING3. If not see
#include "system.h"
#include "coretypes.h"
#include "tm.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "tree.h"
diff --git a/gcc/fortran/decl.c b/gcc/fortran/decl.c
index 9850757..dfac81c 100644
--- a/gcc/fortran/decl.c
+++ b/gcc/fortran/decl.c
@@ -26,7 +26,6 @@ along with GCC; see the file COPYING3. If not see
#include "parse.h"
#include "flags.h"
#include "constructor.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "tree.h"
diff --git a/gcc/fortran/f95-lang.c b/gcc/fortran/f95-lang.c
index 2c055f5..725cf19 100644
--- a/gcc/fortran/f95-lang.c
+++ b/gcc/fortran/f95-lang.c
@@ -28,7 +28,6 @@ along with GCC; see the file COPYING3. If not see
#include "system.h"
#include "coretypes.h"
#include "gfortran.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "options.h"
@@ -39,14 +38,12 @@ along with GCC; see the file COPYING3. If not see
#include "timevar.h"
#include "tm.h"
#include "hard-reg-set.h"
-#include "input.h"
#include "function.h"
#include "toplev.h"
#include "target.h"
#include "debug.h"
#include "diagnostic.h" /* For errorcount/warningcount */
#include "dumpfile.h"
-#include "is-a.h"
#include "plugin-api.h"
#include "ipa-ref.h"
#include "cgraph.h"
diff --git a/gcc/fortran/gfortran.h b/gcc/fortran/gfortran.h
index 4b07ddb..53da7d6 100644
--- a/gcc/fortran/gfortran.h
+++ b/gcc/fortran/gfortran.h
@@ -50,7 +50,6 @@ not after.
#include "intl.h"
-#include "input.h"
#include "splay-tree.h"
/* Major control parameters. */
diff --git a/gcc/fortran/iresolve.c b/gcc/fortran/iresolve.c
index 784bbe5..9dab49e 100644
--- a/gcc/fortran/iresolve.c
+++ b/gcc/fortran/iresolve.c
@@ -29,7 +29,6 @@ along with GCC; see the file COPYING3. If not see
#include "config.h"
#include "system.h"
#include "coretypes.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "options.h"
diff --git a/gcc/fortran/match.c b/gcc/fortran/match.c
index 4394d7b..e7fe831 100644
--- a/gcc/fortran/match.c
+++ b/gcc/fortran/match.c
@@ -25,7 +25,6 @@ along with GCC; see the file COPYING3. If not see
#include "gfortran.h"
#include "match.h"
#include "parse.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "tree.h"
diff --git a/gcc/fortran/module.c b/gcc/fortran/module.c
index 15ee093..8bcc091 100644
--- a/gcc/fortran/module.c
+++ b/gcc/fortran/module.c
@@ -73,7 +73,6 @@ along with GCC; see the file COPYING3. If not see
#include "parse.h" /* FIXME */
#include "constructor.h"
#include "cpp.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "options.h"
diff --git a/gcc/fortran/options.c b/gcc/fortran/options.c
index 0b53ea9..9c30cf3 100644
--- a/gcc/fortran/options.c
+++ b/gcc/fortran/options.c
@@ -21,7 +21,6 @@ along with GCC; see the file COPYING3. If not see
#include "config.h"
#include "system.h"
#include "coretypes.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "options.h"
diff --git a/gcc/fortran/target-memory.c b/gcc/fortran/target-memory.c
index 25d8106..ddb6b4f 100644
--- a/gcc/fortran/target-memory.c
+++ b/gcc/fortran/target-memory.c
@@ -22,7 +22,6 @@ along with GCC; see the file COPYING3. If not see
#include "system.h"
#include "coretypes.h"
#include "flags.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "tree.h"
diff --git a/gcc/fortran/trans-array.c b/gcc/fortran/trans-array.c
index e9174ae..fece3ab 100644
--- a/gcc/fortran/trans-array.c
+++ b/gcc/fortran/trans-array.c
@@ -79,7 +79,6 @@ along with GCC; see the file COPYING3. If not see
#include "system.h"
#include "coretypes.h"
#include "gfortran.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "options.h"
diff --git a/gcc/fortran/trans-common.c b/gcc/fortran/trans-common.c
index add37b6..572fcb2 100644
--- a/gcc/fortran/trans-common.c
+++ b/gcc/fortran/trans-common.c
@@ -97,7 +97,6 @@ along with GCC; see the file COPYING3. If not see
#include "system.h"
#include "coretypes.h"
#include "tm.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "tree.h"
diff --git a/gcc/fortran/trans-const.c b/gcc/fortran/trans-const.c
index 6b855d3..5673b98 100644
--- a/gcc/fortran/trans-const.c
+++ b/gcc/fortran/trans-const.c
@@ -24,7 +24,6 @@ along with GCC; see the file COPYING3. If not see
#include "system.h"
#include "coretypes.h"
#include "gfortran.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "options.h"
diff --git a/gcc/fortran/trans-decl.c b/gcc/fortran/trans-decl.c
index b9c16fb..1eed32d 100644
--- a/gcc/fortran/trans-decl.c
+++ b/gcc/fortran/trans-decl.c
@@ -25,7 +25,6 @@ along with GCC; see the file COPYING3. If not see
#include "coretypes.h"
#include "tm.h"
#include "gfortran.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "tree.h"
@@ -40,10 +39,8 @@ along with GCC; see the file COPYING3. If not see
#include "toplev.h" /* For announce_function. */
#include "target.h"
#include "hard-reg-set.h"
-#include "input.h"
#include "function.h"
#include "flags.h"
-#include "is-a.h"
#include "plugin-api.h"
#include "ipa-ref.h"
#include "cgraph.h"
diff --git a/gcc/fortran/trans-expr.c b/gcc/fortran/trans-expr.c
index 77d2cda..5d6555b 100644
--- a/gcc/fortran/trans-expr.c
+++ b/gcc/fortran/trans-expr.c
@@ -25,7 +25,6 @@ along with GCC; see the file COPYING3. If not see
#include "system.h"
#include "coretypes.h"
#include "gfortran.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "options.h"
diff --git a/gcc/fortran/trans-intrinsic.c b/gcc/fortran/trans-intrinsic.c
index d27732f..1155481 100644
--- a/gcc/fortran/trans-intrinsic.c
+++ b/gcc/fortran/trans-intrinsic.c
@@ -25,7 +25,6 @@ along with GCC; see the file COPYING3. If not see
#include "system.h"
#include "coretypes.h"
#include "tm.h" /* For UNITS_PER_WORD. */
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "tree.h"
diff --git a/gcc/fortran/trans-io.c b/gcc/fortran/trans-io.c
index 02bb0f2..db0f6d9 100644
--- a/gcc/fortran/trans-io.c
+++ b/gcc/fortran/trans-io.c
@@ -22,7 +22,6 @@ along with GCC; see the file COPYING3. If not see
#include "config.h"
#include "system.h"
#include "coretypes.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "options.h"
diff --git a/gcc/fortran/trans-openmp.c b/gcc/fortran/trans-openmp.c
index 3d82447..ca7e250 100644
--- a/gcc/fortran/trans-openmp.c
+++ b/gcc/fortran/trans-openmp.c
@@ -22,7 +22,6 @@ along with GCC; see the file COPYING3. If not see
#include "config.h"
#include "system.h"
#include "coretypes.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "options.h"
diff --git a/gcc/fortran/trans-stmt.c b/gcc/fortran/trans-stmt.c
index 6772a3c..a6ab07a 100644
--- a/gcc/fortran/trans-stmt.c
+++ b/gcc/fortran/trans-stmt.c
@@ -23,7 +23,6 @@ along with GCC; see the file COPYING3. If not see
#include "config.h"
#include "system.h"
#include "coretypes.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "options.h"
diff --git a/gcc/fortran/trans-types.c b/gcc/fortran/trans-types.c
index 657afeb..db628a5 100644
--- a/gcc/fortran/trans-types.c
+++ b/gcc/fortran/trans-types.c
@@ -33,7 +33,6 @@ along with GCC; see the file COPYING3. If not see
LONG_TYPE_SIZE, LONG_LONG_TYPE_SIZE,
FLOAT_TYPE_SIZE, DOUBLE_TYPE_SIZE and
LONG_DOUBLE_TYPE_SIZE. */
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "tree.h"
diff --git a/gcc/fortran/trans.c b/gcc/fortran/trans.c
index e07c6d8..9e85b37 100644
--- a/gcc/fortran/trans.c
+++ b/gcc/fortran/trans.c
@@ -22,7 +22,6 @@ along with GCC; see the file COPYING3. If not see
#include "system.h"
#include "coretypes.h"
#include "gfortran.h"
-#include "input.h"
#include "alias.h"
#include "symtab.h"
#include "options.h"