From ac07b3df3e1580b9689d59778cea95afbe75cf65 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Thu, 19 Nov 2009 12:17:31 +0000 Subject: [PATCH] Unbreak x64 MSVC build. Patch by Nicolas Capens! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89341 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/System/Host.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/System/Host.cpp b/lib/System/Host.cpp index 37591a57b07..e112698349e 100644 --- a/lib/System/Host.cpp +++ b/lib/System/Host.cpp @@ -22,6 +22,9 @@ #ifdef LLVM_ON_WIN32 #include "Win32/Host.inc" #endif +#ifdef _MSC_VER +#include +#endif //===----------------------------------------------------------------------===// //