diff options
Diffstat (limited to 'gcc/fortran')
-rw-r--r-- | gcc/fortran/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/fortran/f95-lang.c | 6 | ||||
-rw-r--r-- | gcc/fortran/trans-decl.c | 7 |
3 files changed, 17 insertions, 1 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index a2a1cf1..f4b33d0 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,8 @@ +2014-10-16 Andrew MacLeod <amacleod@redhat.com> + + * f95-lang.c: Adjust include files. + * trans-decl.c: Likewise. + 2014-10-12 Trevor Saunders <tsaunders@mozilla.com> * trans-decl.c, trans.c, trans.h: Use hash_table instead of hashtab. diff --git a/gcc/fortran/f95-lang.c b/gcc/fortran/f95-lang.c index 66cd3a3..403ab20 100644 --- a/gcc/fortran/f95-lang.c +++ b/gcc/fortran/f95-lang.c @@ -34,6 +34,12 @@ along with GCC; see the file COPYING3. If not see #include "langhooks-def.h" #include "timevar.h" #include "tm.h" +#include "hashtab.h" +#include "hash-set.h" +#include "vec.h" +#include "machmode.h" +#include "hard-reg-set.h" +#include "input.h" #include "function.h" #include "ggc.h" #include "toplev.h" diff --git a/gcc/fortran/trans-decl.c b/gcc/fortran/trans-decl.c index d168bdc..522c0f0 100644 --- a/gcc/fortran/trans-decl.c +++ b/gcc/fortran/trans-decl.c @@ -36,11 +36,16 @@ along with GCC; see the file COPYING3. If not see #include "diagnostic-core.h" /* For internal_error. */ #include "toplev.h" /* For announce_function. */ #include "target.h" +#include "hashtab.h" +#include "hash-set.h" +#include "vec.h" +#include "machmode.h" +#include "hard-reg-set.h" +#include "input.h" #include "function.h" #include "flags.h" #include "cgraph.h" #include "debug.h" -#include "hash-set.h" #include "constructor.h" #include "trans.h" #include "trans-types.h" |