From: Evgeny Pavlov Date: Mon, 12 Dec 2016 12:27:49 +0000 (+0300) Subject: [x86/Linux][SOS] Don't include utilcode.h in gcdumpx86.cpp and gcdump.cpp (#8475) X-Git-Tag: accepted/tizen/base/20180629.140029~2799 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5dbaa3cb2e2e11d98924afe9de472469b5136885;p=platform%2Fupstream%2Fcoreclr.git [x86/Linux][SOS] Don't include utilcode.h in gcdumpx86.cpp and gcdump.cpp (#8475) --- diff --git a/src/gcdump/gcdump.cpp b/src/gcdump/gcdump.cpp index 1c512c8..c89dd6c 100644 --- a/src/gcdump/gcdump.cpp +++ b/src/gcdump/gcdump.cpp @@ -11,7 +11,9 @@ * to the standard code-manager spec. */ +#ifndef FEATURE_PAL #include "utilcode.h" // For _ASSERTE() +#endif //!FEATURE_PAL #include "gcdump.h" /*****************************************************************************/ diff --git a/src/gcdump/i386/gcdumpx86.cpp b/src/gcdump/i386/gcdumpx86.cpp index 0c90397..23e6c68 100644 --- a/src/gcdump/i386/gcdumpx86.cpp +++ b/src/gcdump/i386/gcdumpx86.cpp @@ -9,7 +9,9 @@ #ifdef _TARGET_X86_ /*****************************************************************************/ +#ifndef FEATURE_PAL #include "utilcode.h" // For _ASSERTE() +#endif //!FEATURE_PAL #include "gcdump.h"