diff options
author | Tobias Burnus <burnus@net-b.de> | 2010-05-23 19:18:24 +0200 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2010-05-23 19:18:24 +0200 |
commit | 7274feea190b82eacf5b4203a5a0de28c7e92f07 (patch) | |
tree | 21db07450552c82bb5fa94b2769e882a2b6db8d0 /gcc/fortran/trans-openmp.c | |
parent | 539bac37743c9a46db45b42376a6ac84d35f19a4 (diff) | |
download | gcc-7274feea190b82eacf5b4203a5a0de28c7e92f07.zip gcc-7274feea190b82eacf5b4203a5a0de28c7e92f07.tar.gz gcc-7274feea190b82eacf5b4203a5a0de28c7e92f07.tar.bz2 |
gfortran.h: Do not include system.h.
2010-05-21 Tobias Burnus <burnus@net-b.de>
* gfortran.h: Do not include system.h.
* bbt.c: Include system.h.
* data.c: Ditto.
* dependency.c: Ditto.
* dump-parse-tree.c: Ditto.
* arith.h: Do not include gfortran.h.
* constructor.h: Do not include gfortran.h and splay-tree.h.
* match.h: Do not include gfortran.h.
* parse.h: Ditto.
* target-memory.h: Ditto.
* openmp.c: Do not include toplev.h and target.h.
* trans-stmt.c: Ditto not include toplev.h.
* primary.c: Ditto.
* trans-common.c: Tell why toplev.h is needed. And
do not include target.h.
* trans-expr.c: Tell why toplev.h is needed.
* trans-array.c: Ditto.
* trans-openmp.c: Ditto.
* trans-const.c: Ditto.
* trans.c: Ditto.
* trans-types.c: Ditto.
* trans-io.c: Ditto.
* trans-decl.c: Ditto.
* scanner.c: Ditto.
* convert.c: Ditto.
* trans-intrinsic.c: Ditto.
* options.c: Ditto.
From-SVN: r159763
Diffstat (limited to 'gcc/fortran/trans-openmp.c')
-rw-r--r-- | gcc/fortran/trans-openmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/trans-openmp.c b/gcc/fortran/trans-openmp.c index 53ce4ff..50e7847 100644 --- a/gcc/fortran/trans-openmp.c +++ b/gcc/fortran/trans-openmp.c @@ -25,7 +25,7 @@ along with GCC; see the file COPYING3. If not see #include "coretypes.h" #include "tree.h" #include "gimple.h" /* For create_tmp_var_raw. */ -#include "toplev.h" +#include "toplev.h" /* For internal_error. */ #include "gfortran.h" #include "trans.h" #include "trans-stmt.h" |