diff options
Diffstat (limited to 'gcc/lto')
-rw-r--r-- | gcc/lto/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/lto/lto-lang.c | 6 | ||||
-rw-r--r-- | gcc/lto/lto-object.c | 5 | ||||
-rw-r--r-- | gcc/lto/lto-partition.c | 5 | ||||
-rw-r--r-- | gcc/lto/lto-symtab.c | 6 | ||||
-rw-r--r-- | gcc/lto/lto.c | 7 |
6 files changed, 32 insertions, 5 deletions
diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog index 1b83f22046a..5beccad89aa 100644 --- a/gcc/lto/ChangeLog +++ b/gcc/lto/ChangeLog @@ -1,3 +1,11 @@ +2013-11-22 Andrew MacLeod <amacleod@redhat.com> + + * lto.c: Add required include files from gimple.h. + * lto-lang.c: Likewise + * lto-object.c: Likewise + * lto-partition.c: Likewise + * lto-symtab.c: Likewise + 2013-11-18 Trevor Saunders <tsaunders@mozilla.com> * lto-partition.c lto-symtab.c lto.c Adjust. diff --git a/gcc/lto/lto-lang.c b/gcc/lto/lto-lang.c index cb15ce32fa7..67746b27433 100644 --- a/gcc/lto/lto-lang.c +++ b/gcc/lto/lto-lang.c @@ -33,6 +33,11 @@ along with GCC; see the file COPYING3. If not see #include "lto-tree.h" #include "lto.h" #include "tree-inline.h" +#include "basic-block.h" +#include "tree-ssa-alias.h" +#include "internal-fn.h" +#include "gimple-expr.h" +#include "is-a.h" #include "gimple.h" #include "diagnostic-core.h" #include "toplev.h" @@ -1303,6 +1308,5 @@ lto_tree_node_structure (union lang_tree_node *t ATTRIBUTE_UNUSED) return TS_LTO_GENERIC; } -#include "ggc.h" #include "gtype-lto.h" #include "gt-lto-lto-lang.h" diff --git a/gcc/lto/lto-object.c b/gcc/lto/lto-object.c index 19f10ccb978..b4518bb55b9 100644 --- a/gcc/lto/lto-object.c +++ b/gcc/lto/lto-object.c @@ -22,6 +22,11 @@ along with GCC; see the file COPYING3. If not see #include "system.h" #include "coretypes.h" #include "tree.h" +#include "basic-block.h" +#include "tree-ssa-alias.h" +#include "internal-fn.h" +#include "gimple-expr.h" +#include "is-a.h" #include "gimple.h" #include "diagnostic-core.h" #include "lto.h" diff --git a/gcc/lto/lto-partition.c b/gcc/lto/lto-partition.c index 42d78307ded..95ec7fabf86 100644 --- a/gcc/lto/lto-partition.c +++ b/gcc/lto/lto-partition.c @@ -23,6 +23,11 @@ along with GCC; see the file COPYING3. If not see #include "toplev.h" #include "tree.h" #include "gcc-symtab.h" +#include "basic-block.h" +#include "tree-ssa-alias.h" +#include "internal-fn.h" +#include "gimple-expr.h" +#include "is-a.h" #include "gimple.h" #include "tm.h" #include "cgraph.h" diff --git a/gcc/lto/lto-symtab.c b/gcc/lto/lto-symtab.c index 7c7075e50fc..87d6332ab2b 100644 --- a/gcc/lto/lto-symtab.c +++ b/gcc/lto/lto-symtab.c @@ -23,8 +23,12 @@ along with GCC; see the file COPYING3. If not see #include "coretypes.h" #include "diagnostic-core.h" #include "tree.h" +#include "basic-block.h" +#include "tree-ssa-alias.h" +#include "internal-fn.h" +#include "gimple-expr.h" +#include "is-a.h" #include "gimple.h" -#include "ggc.h" #include "hashtab.h" #include "plugin-api.h" #include "lto-streamer.h" diff --git a/gcc/lto/lto.c b/gcc/lto/lto.c index 0211437d5f9..8f2f1b0f0c8 100644 --- a/gcc/lto/lto.c +++ b/gcc/lto/lto.c @@ -28,16 +28,17 @@ along with GCC; see the file COPYING3. If not see #include "diagnostic-core.h" #include "tm.h" #include "cgraph.h" -#include "ggc.h" #include "tree-ssa-operands.h" #include "tree-pass.h" #include "langhooks.h" -#include "vec.h" #include "bitmap.h" -#include "pointer-set.h" #include "ipa-prop.h" #include "common.h" #include "debug.h" +#include "tree-ssa-alias.h" +#include "internal-fn.h" +#include "gimple-expr.h" +#include "is-a.h" #include "gimple.h" #include "lto.h" #include "lto-tree.h" |