diff --git a/lib/Support/Timer.cpp b/lib/Support/Timer.cpp index 625653afe1a..26f10e77f77 100644 --- a/lib/Support/Timer.cpp +++ b/lib/Support/Timer.cpp @@ -10,7 +10,9 @@ #include #include #include +#ifndef __FreeBSD__ #include +#endif // __FreeBSD__ #include #include #include @@ -75,12 +77,13 @@ Timer::~Timer() { } static long getMemUsage() { +#ifndef __FreeBSD__ if (TrackSpace) { struct mallinfo MI = mallinfo(); return MI.uordblks/*+MI.hblkhd*/; - } else { - return 0; } +#endif // __FreeBSD__ + return 0; } struct TimeRecord { diff --git a/support/lib/Support/Timer.cpp b/support/lib/Support/Timer.cpp index 625653afe1a..26f10e77f77 100644 --- a/support/lib/Support/Timer.cpp +++ b/support/lib/Support/Timer.cpp @@ -10,7 +10,9 @@ #include #include #include +#ifndef __FreeBSD__ #include +#endif // __FreeBSD__ #include #include #include @@ -75,12 +77,13 @@ Timer::~Timer() { } static long getMemUsage() { +#ifndef __FreeBSD__ if (TrackSpace) { struct mallinfo MI = mallinfo(); return MI.uordblks/*+MI.hblkhd*/; - } else { - return 0; } +#endif // __FreeBSD__ + return 0; } struct TimeRecord {