diff options
author | Tobias Burnus <burnus@net-b.de> | 2010-07-06 21:57:29 +0200 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2010-07-06 21:57:29 +0200 |
commit | c829d0163dc338b0c12d27c6e7aedb6da5f7f4c5 (patch) | |
tree | bc2b84ea51ffc9c8bcb8199fc4439137b0a5671e /gcc/fortran/trans-decl.c | |
parent | 7114ab45797aeeca8ef7ca25b215319d551a2b1c (diff) | |
download | gcc-c829d0163dc338b0c12d27c6e7aedb6da5f7f4c5.zip gcc-c829d0163dc338b0c12d27c6e7aedb6da5f7f4c5.tar.gz gcc-c829d0163dc338b0c12d27c6e7aedb6da5f7f4c5.tar.bz2 |
trans-decl.c: Include diagnostic-core.h besides toplev.h.
2010-07-06 Tobias Burnus <burnus@net-b.de>
* trans-decl.c: Include diagnostic-core.h besides toplev.h.
* trans-intrinsic.c: Ditto.
* trans-types.c: Ditto.
* convert.c: Include diagnostic-core.h instead of toplev.h.
* options.c: Ditto.
* trans-array.c: Ditto.
* trans-const.c: Ditto.
* trans-expr.c: Ditto.
* trans-io.c: Ditto.
* trans-openmp.c: Ditto.
* trans.c: Ditto.
From-SVN: r161885
Diffstat (limited to 'gcc/fortran/trans-decl.c')
-rw-r--r-- | gcc/fortran/trans-decl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/fortran/trans-decl.c b/gcc/fortran/trans-decl.c index 1c7226c..1331148 100644 --- a/gcc/fortran/trans-decl.c +++ b/gcc/fortran/trans-decl.c @@ -29,7 +29,8 @@ along with GCC; see the file COPYING3. If not see #include "tree-dump.h" #include "gimple.h" /* For create_tmp_var_raw. */ #include "ggc.h" -#include "toplev.h" /* For announce_function/internal_error. */ +#include "diagnostic-core.h" /* For internal_error. */ +#include "toplev.h" /* For announce_function. */ #include "output.h" /* For decl_default_tls_model. */ #include "target.h" #include "function.h" |