diff options
author | Sebastian Pop <sebastian.pop@amd.com> | 2010-12-28 19:09:16 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2010-12-28 19:09:16 +0000 |
commit | e8c2fb69aecfe3042ca2283c85a8f6af7f7a0f36 (patch) | |
tree | 1847ceec62ea0aa6b0b8f3740a7aa65420265e3e /gcc | |
parent | 1bd6497c3e23de82b850f8116607d687df939e06 (diff) | |
download | gcc-e8c2fb69aecfe3042ca2283c85a8f6af7f7a0f36.zip gcc-e8c2fb69aecfe3042ca2283c85a8f6af7f7a0f36.tar.gz gcc-e8c2fb69aecfe3042ca2283c85a8f6af7f7a0f36.tar.bz2 |
Fix bootstrap without graphite.
2010-12-28 Sebastian Pop <sebastian.pop@amd.com>
* Makefile.in (graphite.o): Add dependence on DIAGNOSTIC_H.
* graphite.c: Include diagnostic.h.
From-SVN: r168297
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 6 | ||||
-rw-r--r-- | gcc/graphite.c | 1 |
3 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 439e24b..8be79d5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2010-12-28 Sebastian Pop <sebastian.pop@amd.com> + * Makefile.in (graphite.o): Add dependence on DIAGNOSTIC_H. + * graphite.c: Include diagnostic.h. + +2010-12-28 Sebastian Pop <sebastian.pop@amd.com> + * Makefile.in (TREE_VECTORIZER_H): Removed duplicate definition. (tree-browser.o): Update dependences. (omega.o): Same. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index b5f9bd2..01ebc42 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2669,9 +2669,9 @@ 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 $(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.o : graphite.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(DIAGNOSTIC_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 graphite-blocking.o : graphite-blocking.c $(CONFIG_H) $(SYSTEM_H) \ coretypes.h $(TREE_FLOW_H) $(TREE_DUMP_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) \ diff --git a/gcc/graphite.c b/gcc/graphite.c index 84a8898..04462f2 100644 --- a/gcc/graphite.c +++ b/gcc/graphite.c @@ -35,6 +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 "tree-flow.h" #include "tree-dump.h" #include "cfgloop.h" |