From: dje Date: Mon, 4 Nov 2019 13:52:46 +0000 (+0000) Subject: * ggc-common.c: Include system.h before malloc.h. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87ad6d7e413bbd584a7ec39f0fba3a7a93e95598;p=thirdparty%2Fgcc.git * ggc-common.c: Include system.h before malloc.h. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@277778 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 536ad7fd4bcf..1b99947db227 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2019-11-04 David Edelsohn + + * ggc-common.c: Include system.h before malloc.h. + 2019-11-04 Alexandre Oliva * configure.ac: Pass --enable-obsolete=* and diff --git a/gcc/ggc-common.c b/gcc/ggc-common.c index b0a01c7aa20d..0841a0ab6c43 100644 --- a/gcc/ggc-common.c +++ b/gcc/ggc-common.c @@ -21,10 +21,10 @@ along with GCC; see the file COPYING3. If not see any particular GC implementation. */ #include "config.h" +#include "system.h" #ifdef HAVE_MALLINFO #include #endif -#include "system.h" #include "coretypes.h" #include "timevar.h" #include "diagnostic-core.h"