summaryrefslogtreecommitdiff
path: root/gcc/fortran/trans-common.c
diff options
context:
space:
mode:
authorDavid Edelsohn <dje.gcc@gmail.com>2015-07-02 22:01:36 +0000
committerDavid Edelsohn <dje@gcc.gnu.org>2015-07-02 18:01:36 -0400
commit5209ef3c0ba13d146d69a2d03ced776097a6a72c (patch)
tree820a255acb3f503f5c1b8a1d67276082d52f5d98 /gcc/fortran/trans-common.c
parent10d712eb7d2ffbb10ca071eb41139120ed636082 (diff)
downloadgcc-5209ef3c0ba13d146d69a2d03ced776097a6a72c.tar.gz
* trans-common.c: Include <map> after system.h.
From-SVN: r225358
Diffstat (limited to 'gcc/fortran/trans-common.c')
-rw-r--r--gcc/fortran/trans-common.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/fortran/trans-common.c b/gcc/fortran/trans-common.c
index 572fcb23f59..cad846a08dd 100644
--- a/gcc/fortran/trans-common.c
+++ b/gcc/fortran/trans-common.c
@@ -92,9 +92,11 @@ along with GCC; see the file COPYING3. If not see
is examined for still-unused equivalence conditions. We create a
block for each merged equivalence list. */
-#include <map>
#include "config.h"
#include "system.h"
+
+#include <map>
+
#include "coretypes.h"
#include "tm.h"
#include "alias.h"