diff options
Diffstat (limited to 'gcc/go')
-rw-r--r-- | gcc/go/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/go/go-backend.c | 3 | ||||
-rw-r--r-- | gcc/go/go-c.h | 1 | ||||
-rw-r--r-- | gcc/go/go-gcc.cc | 4 | ||||
-rw-r--r-- | gcc/go/go-lang.c | 3 |
5 files changed, 7 insertions, 11 deletions
diff --git a/gcc/go/ChangeLog b/gcc/go/ChangeLog index da6c9ef..da13f94 100644 --- a/gcc/go/ChangeLog +++ b/gcc/go/ChangeLog @@ -1,3 +1,10 @@ +2015-06-04 Andrew MacLeod <amacleod@redhat.com> + + * go-backend.c: Adjust includes for restructured coretypes.h. + * go-c.h: Likewise. + * go-gcc.cc: Likewise. + * go-lang.c: Likewise. + 2015-04-30 Chris Manghane <cmang@google.com> * go-gcc.cc (Gcc_backend::stack_allocation_expression): New diff --git a/gcc/go/go-backend.c b/gcc/go/go-backend.c index 66ecee7..7f452f5 100644 --- a/gcc/go/go-backend.c +++ b/gcc/go/go-backend.c @@ -23,13 +23,10 @@ along with GCC; see the file COPYING3. If not see #include "simple-object.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 "stor-layout.h" diff --git a/gcc/go/go-c.h b/gcc/go/go-c.h index 35a20e9..ea3aa38 100644 --- a/gcc/go/go-c.h +++ b/gcc/go/go-c.h @@ -22,7 +22,6 @@ along with GCC; see the file COPYING3. If not see #define GO_EXTERN_C -#include "machmode.h" /* Functions defined in the Go frontend proper called by the GCC interface. */ diff --git a/gcc/go/go-gcc.cc b/gcc/go/go-gcc.cc index 82ce3ee6..77e1a2e 100644 --- a/gcc/go/go-gcc.cc +++ b/gcc/go/go-gcc.cc @@ -25,14 +25,11 @@ #include <gmp.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" @@ -55,7 +52,6 @@ #include "langhooks.h" #include "toplev.h" #include "output.h" -#include "real.h" #include "realmpfr.h" #include "builtins.h" diff --git a/gcc/go/go-lang.c b/gcc/go/go-lang.c index fe5b583..5231315 100644 --- a/gcc/go/go-lang.c +++ b/gcc/go/go-lang.c @@ -23,14 +23,11 @@ along with GCC; see the file COPYING3. If not see #include "coretypes.h" #include "opts.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" |