diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2012-05-31 16:43:31 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2012-05-31 16:43:31 +0000 |
commit | 6f4185d7863f05abadb10550b26eb659a2b1eace (patch) | |
tree | 3f2a7eeb0b475f62a57db19df71b411970c67aac /gcc/final.c | |
parent | 5be35a6121448a5692041a94b1caa7c710ef6f11 (diff) | |
download | gcc-6f4185d7863f05abadb10550b26eb659a2b1eace.zip gcc-6f4185d7863f05abadb10550b26eb659a2b1eace.tar.gz gcc-6f4185d7863f05abadb10550b26eb659a2b1eace.tar.bz2 |
Makefile.in: Fix many dependencies.
* Makefile.in: Fix many dependencies.
* tree-profile.c: Don't include regs.h.
* tree-vectorizer.c: Don't include cfglayout.h.
* tree-vect-stmts.c: Likewise.
* tree-vect-slp.c: Likewise.
* tree-vect-loop.c: Likewise.
* reg-stack.c: Likewise.
* tree-ssa-loop-manip.c: Likewise.
* toplev.c: Likewise.
* varasm.c: Don't include cfglayout.h, basic-block.h,
and tree-iterator.h.
* tree-cfgcleanup.c: Don't include cfglayout.h.
* passes.c: Don't include cfglayout.h, dwarf2asm.h,
dwarf2out.h, dbxout.h, sdbout.h, and xcoffout.h.
* cgraphclones.c: Don't include plugin.h.
From-SVN: r188068
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/final.c b/gcc/final.c index 718caf1..fe1add2 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -72,7 +72,7 @@ along with GCC; see the file COPYING3. If not see #include "targhooks.h" #include "debug.h" #include "expr.h" -#include "cfglayout.h" +#include "cfglayout.h" /* for reemit_insn_block_notes */ #include "tree-pass.h" #include "tree-flow.h" #include "timevar.h" @@ -83,7 +83,7 @@ along with GCC; see the file COPYING3. If not see #include "ggc.h" #include "cfgloop.h" #include "params.h" -#include "tree-pretty-print.h" +#include "tree-pretty-print.h" /* for dump_function_header */ #ifdef XCOFF_DEBUGGING_INFO #include "xcoffout.h" /* Needed for external data |