2019-11-04 Richard Biener <rguenther@suse.de>
* system.h: Include malloc.h if INCLUDE_MALLOC_H and HAVE_MALLINFO.
* ggc-common.c: Remove inclusion of malloc.h, define INCLUDE_MALLOC_H.
From-SVN: r277779
+2019-11-04 Richard Biener <rguenther@suse.de>
+
+ * system.h: Include malloc.h if INCLUDE_MALLOC_H and HAVE_MALLINFO.
+ * ggc-common.c: Remove inclusion of malloc.h, define INCLUDE_MALLOC_H.
+
2019-11-04 David Edelsohn <dje.gcc@gmail.com>
* ggc-common.c: Include system.h before malloc.h.
any particular GC implementation. */
#include "config.h"
+#define INCLUDE_MALLOC_H
#include "system.h"
-#ifdef HAVE_MALLINFO
-#include <malloc.h>
-#endif
#include "coretypes.h"
#include "timevar.h"
#include "diagnostic-core.h"
# include "unique-ptr.h"
#endif
+#ifdef INCLUDE_MALLOC_H
+#ifdef HAVE_MALLINFO
+#include <malloc.h>
+#endif
+#endif
+
/* Redefine abort to report an internal error w/o coredump, and
reporting the location of the error in the source file. */
extern void fancy_abort (const char *, int, const char *)