replicate a terrible hack to fix a build error on VC++

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120039 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2010-11-23 20:07:39 +00:00
Родитель d6f6111980
Коммит 72f6130a17
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -15,6 +15,10 @@
#include "llvm/System/Path.h"
using namespace clang;
#if defined(_MSC_VER)
#define S_ISDIR(s) (_S_IFDIR & s)
#endif
MemorizeStatCalls::LookupResult
MemorizeStatCalls::getStat(const char *Path, struct stat &StatBuf) {
LookupResult Result = statChained(Path, StatBuf);