diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 41f0c8fa4a16..fbbb310294f8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,12 @@ +2010-12-28 Sebastian Pop + + * Makefile.in (graphite.o): Depends on DIAGNOSTIC_CORE_H. + (graphite-clast-to-gimple.o): Same. + (graphite-poly.o): Same. + * graphite-clast-to-gimple.c: Include diagnostic-core.h. + * graphite-poly.c: Same. + * graphite.c: Same. + 2010-12-28 Richard Guenther PR debug/46931 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 01ebc4214237..de3bde939f72 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2669,7 +2669,7 @@ tree-data-ref.o : tree-data-ref.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ $(TREE_PASS_H) langhooks.h sese.o : sese.c sese.h $(CONFIG_H) $(SYSTEM_H) coretypes.h tree-pretty-print.h \ $(TREE_FLOW_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) tree-pass.h value-prof.h -graphite.o : graphite.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(DIAGNOSTIC_H) \ +graphite.o : graphite.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(DIAGNOSTIC_CORE_H) \ $(TREE_FLOW_H) $(TREE_DUMP_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) sese.h \ $(DBGCNT_H) graphite-ppl.h graphite-poly.h graphite-scop-detection.h \ graphite-clast-to-gimple.h graphite-sese-to-poly.h @@ -2677,7 +2677,7 @@ graphite-blocking.o : graphite-blocking.c $(CONFIG_H) $(SYSTEM_H) \ coretypes.h $(TREE_FLOW_H) $(TREE_DUMP_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) \ sese.h graphite-ppl.h graphite-poly.h graphite-clast-to-gimple.o : graphite-clast-to-gimple.c $(CONFIG_H) \ - $(SYSTEM_H) coretypes.h $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TREE_DUMP_H) \ + $(SYSTEM_H) coretypes.h $(DIAGNOSTIC_CORE_H) $(TREE_FLOW_H) $(TREE_DUMP_H) \ $(CFGLOOP_H) $(TREE_DATA_REF_H) sese.h graphite-cloog-util.h \ graphite-ppl.h graphite-poly.h graphite-clast-to-gimple.h \ graphite-dependences.h graphite-cloog-compat.h @@ -2693,7 +2693,7 @@ graphite-interchange.o : graphite-interchange.c $(CONFIG_H) $(SYSTEM_H) \ coretypes.h $(TREE_FLOW_H) $(TREE_DUMP_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) \ sese.h graphite-ppl.h graphite-poly.h graphite-poly.o : graphite-poly.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ - $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TREE_DUMP_H) gimple-pretty-print.h \ + $(DIAGNOSTIC_CORE_H) $(TREE_FLOW_H) $(TREE_DUMP_H) gimple-pretty-print.h \ $(CFGLOOP_H) $(TREE_DATA_REF_H) sese.h graphite-ppl.h graphite-poly.h \ graphite-dependences.h graphite-cloog-util.h graphite-ppl.o : graphite-ppl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ diff --git a/gcc/graphite-clast-to-gimple.c b/gcc/graphite-clast-to-gimple.c index 90bf90a15d1b..47a03d50f6f6 100644 --- a/gcc/graphite-clast-to-gimple.c +++ b/gcc/graphite-clast-to-gimple.c @@ -21,7 +21,7 @@ along with GCC; see the file COPYING3. If not see #include "config.h" #include "system.h" #include "coretypes.h" -#include "diagnostic.h" +#include "diagnostic-core.h" #include "tree-flow.h" #include "tree-dump.h" #include "cfgloop.h" diff --git a/gcc/graphite-poly.c b/gcc/graphite-poly.c index cabab4415ae1..f88788b81130 100644 --- a/gcc/graphite-poly.c +++ b/gcc/graphite-poly.c @@ -21,7 +21,7 @@ along with GCC; see the file COPYING3. If not see #include "config.h" #include "system.h" #include "coretypes.h" -#include "diagnostic.h" +#include "diagnostic-core.h" #include "tree-flow.h" #include "tree-dump.h" #include "gimple-pretty-print.h" diff --git a/gcc/graphite.c b/gcc/graphite.c index 04462f21c400..70c3d463f8f8 100644 --- a/gcc/graphite.c +++ b/gcc/graphite.c @@ -35,7 +35,7 @@ along with GCC; see the file COPYING3. If not see #include "config.h" #include "system.h" #include "coretypes.h" -#include "diagnostic.h" +#include "diagnostic-core.h" #include "tree-flow.h" #include "tree-dump.h" #include "cfgloop.h"