diff options
author | Sebastian Pop <sebastian.pop@amd.com> | 2010-12-28 17:09:16 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2010-12-28 17:09:16 +0000 |
commit | 1bd6497c3e23de82b850f8116607d687df939e06 (patch) | |
tree | acb33ba01f6620ff25da458fd2ead97420465a3e /gcc/tree-browser.c | |
parent | c67b2d4ea07e3c70b949f7af3638c0a84f966956 (diff) | |
download | gcc-1bd6497c3e23de82b850f8116607d687df939e06.zip gcc-1bd6497c3e23de82b850f8116607d687df939e06.tar.gz gcc-1bd6497c3e23de82b850f8116607d687df939e06.tar.bz2 |
Do not include unnecessary .h files.
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.
(tree-chrec.o): Same.
(tree-scalar-evolution.o): Same.
(tree-data-ref.o): Same.
(sese.o): Same.
(graphite.o): Same.
(graphite-blocking.o): Same.
(graphite-clast-to-gimple.o): Same.
(graphite-cloog-util.o): Same.
(graphite-dependences.o): Same.
(graphite-flattening.o): Same.
(graphite-interchange.o): Same.
(graphite-poly.o): Same.
(graphite-ppl.o): Same.
(graphite-scop-detection.o): Same.
(graphite-sese-to-poly.o): Same.
(tree-loop-linear.o): Same.
(tree-loop-distribution.o): Same.
(tree-parloops.o): Same.
(lambda-mat.o): Same.
(lambda-trans.o): Same.
(lambda-code.o): Same.
* tree-browser.o: Do not include unnecessary .h files.
* omega.o: Same.
* tree-chrec.o: Same.
* tree-scalar-evolution.o: Same.
* tree-data-ref.o: Same.
* sese.o: Same.
* graphite.o: Same.
* graphite-blocking.o: Same.
* graphite-clast-to-gimple.o: Same.
* graphite-cloog-util.o: Same.
* graphite-dependences.o: Same.
* graphite-flattening.o: Same.
* graphite-interchange.o: Same.
* graphite-poly.o: Same.
* graphite-ppl.o: Same.
* graphite-scop-detection.o: Same.
* graphite-sese-to-poly.o: Same.
* tree-loop-linear.o: Same.
* tree-loop-distribution.o: Same.
* tree-parloops.o: Same.
* lambda-mat.o: Same.
* lambda-trans.o: Same.
* lambda-code.o: Same.
* graphite.h: Removed.
From-SVN: r168296
Diffstat (limited to 'gcc/tree-browser.c')
-rw-r--r-- | gcc/tree-browser.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/tree-browser.c b/gcc/tree-browser.c index 3803a50..dab7286 100644 --- a/gcc/tree-browser.c +++ b/gcc/tree-browser.c @@ -22,19 +22,14 @@ along with GCC; see the file COPYING3. If not see #include "config.h" #include "system.h" #include "coretypes.h" -#include "tm.h" #include "tree.h" -#include "tree-inline.h" #include "tree-pretty-print.h" -#include "hashtab.h" - #define TB_OUT_FILE stdout #define TB_IN_FILE stdin #define TB_NIY fprintf (TB_OUT_FILE, "Sorry this command is not yet implemented.\n") #define TB_WF fprintf (TB_OUT_FILE, "Warning, this command failed.\n") - /* Structures for handling Tree Browser's commands. */ #define DEFTBCODE(COMMAND, STRING, HELP) COMMAND, enum TB_Comm_code { |