From: Bill Wendling Date: Tue, 1 Apr 2008 22:09:20 +0000 (+0000) Subject: Fix compilation errors on MSVC. Patch by Argiris Kirtzidis! X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a442006f4876be13b632ba1a4bee3ae827194eb1;p=oota-llvm.git Fix compilation errors on MSVC. Patch by Argiris Kirtzidis! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49055 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/MemoryBuffer.cpp b/lib/Support/MemoryBuffer.cpp index 7a60b85b91e..b170ea72670 100644 --- a/lib/Support/MemoryBuffer.cpp +++ b/lib/Support/MemoryBuffer.cpp @@ -29,6 +29,7 @@ #include #else #include +#include #endif using namespace llvm; @@ -175,7 +176,7 @@ MemoryBuffer *MemoryBuffer::getFile(const char *Filename, std::string *ErrStr, int64_t FileSize) { int OpenFlags = 0; #ifdef O_BINARY - Flags |= O_BINARY; // Open input file in binary mode on win32. + OpenFlags |= O_BINARY; // Open input file in binary mode on win32. #endif int FD = ::open(Filename, O_RDONLY|OpenFlags); if (FD == -1) {