mirror of git://gcc.gnu.org/git/gcc.git
* trans-common.c: Include <map> after system.h.
From-SVN: r225358
This commit is contained in:
parent
10d712eb7d
commit
5209ef3c0b
|
|
@ -1,3 +1,7 @@
|
||||||
|
2015-07-02 David Edelsohn <dje.gcc@gmail.com>
|
||||||
|
|
||||||
|
* trans-common.c: Include <map> after system.h.
|
||||||
|
|
||||||
2015-07-02 Paul Thomas <pault@gcc.gnu.org>
|
2015-07-02 Paul Thomas <pault@gcc.gnu.org>
|
||||||
|
|
||||||
PR fortran/52846
|
PR fortran/52846
|
||||||
|
|
|
||||||
|
|
@ -92,9 +92,11 @@ along with GCC; see the file COPYING3. If not see
|
||||||
is examined for still-unused equivalence conditions. We create a
|
is examined for still-unused equivalence conditions. We create a
|
||||||
block for each merged equivalence list. */
|
block for each merged equivalence list. */
|
||||||
|
|
||||||
#include <map>
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
|
|
||||||
|
#include <map>
|
||||||
|
|
||||||
#include "coretypes.h"
|
#include "coretypes.h"
|
||||||
#include "tm.h"
|
#include "tm.h"
|
||||||
#include "alias.h"
|
#include "alias.h"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue