diff options
Diffstat (limited to 'gcc/go')
-rw-r--r-- | gcc/go/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/go/go-gcc.cc | 3 | ||||
-rw-r--r-- | gcc/go/go-lang.c | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/gcc/go/ChangeLog b/gcc/go/ChangeLog index 918862e..d2e3573 100644 --- a/gcc/go/ChangeLog +++ b/gcc/go/ChangeLog @@ -1,3 +1,8 @@ +2013-11-22 Andrew MacLeod <amacleod@redhat.com> + + * go-gcc.cc: Add required include files from gimple.h. + * go-lang.c: Likewise + 2013-11-18 Richard Sandiford <rdsandiford@googlemail.com> * gofrontend/expressions.cc: Replace tree_low_cst (..., 0) with diff --git a/gcc/go/go-gcc.cc b/gcc/go/go-gcc.cc index 83f91d5..50e31ff 100644 --- a/gcc/go/go-gcc.cc +++ b/gcc/go/go-gcc.cc @@ -29,7 +29,8 @@ #include "stor-layout.h" #include "varasm.h" #include "tree-iterator.h" -#include "gimple.h" +#include "basic-block.h" +#include "gimple-expr.h" #include "toplev.h" #include "output.h" #include "real.h" diff --git a/gcc/go/go-lang.c b/gcc/go/go-lang.c index 93a0446..580b1b8 100644 --- a/gcc/go/go-lang.c +++ b/gcc/go/go-lang.c @@ -23,10 +23,10 @@ along with GCC; see the file COPYING3. If not see #include "coretypes.h" #include "opts.h" #include "tree.h" -#include "gimple.h" +#include "basic-block.h" +#include "gimple-expr.h" #include "gimplify.h" #include "stor-layout.h" -#include "ggc.h" #include "toplev.h" #include "debug.h" #include "options.h" |