about summary refs log tree commit diff homepage
path: root/lib/Support
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/MemoryUsage.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Support/MemoryUsage.cpp b/lib/Support/MemoryUsage.cpp
index f1757ad3..2f62dc80 100644
--- a/lib/Support/MemoryUsage.cpp
+++ b/lib/Support/MemoryUsage.cpp
@@ -18,7 +18,7 @@
 #ifdef HAVE_MALLINFO
 #include <malloc.h>
 #endif
-#ifdef HAVE_MALLOC_MALLOC_H
+#ifdef HAVE_MALLOC_ZONE_STATISTICS
 #include <malloc/malloc.h>
 #endif
 
@@ -95,7 +95,7 @@ size_t util::GetTotalMallocUsage() {
   MallocExtension::instance()->GetNumericProperty(
       "generic.current_allocated_bytes", &value);
   return value;
-#elif HAVE_MALLINFO
+#elif defined(HAVE_MALLINFO)
   struct mallinfo mi = ::mallinfo();
   // The malloc implementation in glibc (pmalloc2)
   // does not include mmap()'ed memory in mi.uordblks
@@ -106,7 +106,7 @@ size_t util::GetTotalMallocUsage() {
   return (unsigned)mi.uordblks;
 #endif
 
-#elif defined(HAVE_MALLOC_ZONE_STATISTICS) && defined(HAVE_MALLOC_MALLOC_H)
+#elif defined(HAVE_MALLOC_ZONE_STATISTICS)
 
   // Support memory usage on Darwin.
   malloc_statistics_t Stats;