diff options
author | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2010-06-30 07:39:21 +0000 |
---|---|---|
committer | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2010-06-30 07:39:21 +0000 |
commit | 6662d794044f9124db635ba8acaa82c9483a3b33 (patch) | |
tree | a3c3f51f5fc0dd8e6915c34430cccc6b4dc842a7 /gcc/c-typeck.c | |
parent | 9de9cbaf4a18e968a58c5798edb9bf4c37437b0c (diff) | |
download | gcc-6662d794044f9124db635ba8acaa82c9483a3b33.tar.gz |
tree.h (block_may_fallthru): Declare here.
2010-06-30 Manuel López-Ibáñez <manu@gcc.gnu.org>
* tree.h (block_may_fallthru): Declare here.
* tree-flow.h (block_may_fallthru): Do not declare here.
* c-typeck.c: Do not include tree-flow.h. Include gimple.h and
bitmap.h
* Makefile.in (c-typeck.o): Update dependencies.
c-family/
* c-gimplify.c: Do not include tree-flow.h
cp/
* tree.c: Include gimple.h. Do not include tree-flow.h
* decl.c: Do not include tree-flow.h
* Make-lang.in: Adjust dependencies.
ada/
* gcc-interface/trans.c: Do not include tree-flow.h.
* gcc-interface/Make-lang.in: Adjust dependencies.
From-SVN: r161591
Diffstat (limited to 'gcc/c-typeck.c')
-rw-r--r-- | gcc/c-typeck.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index f8bfb519711..18e4bdcebfe 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -39,7 +39,8 @@ along with GCC; see the file COPYING3. If not see #include "intl.h" #include "target.h" #include "tree-iterator.h" -#include "tree-flow.h" +#include "bitmap.h" +#include "gimple.h" /* Possible cases of implicit bad conversions. Used to select diagnostic messages in convert_for_assignment. */ |