From 6d600da7346bf898cfbe8f6030051f10d157fcd4 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Fri, 4 Feb 2011 12:53:04 +0000 Subject: [PATCH] Make Win32's header file name lower for cross build on case-sensitive filesystem. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124864 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/Windows/PathV2.inc | 2 +- lib/Support/Windows/Windows.h | 4 ++-- lib/Support/Windows/system_error.inc | 4 ++-- utils/unittest/UnitTestMain/TestMain.cpp | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/Support/Windows/PathV2.inc b/lib/Support/Windows/PathV2.inc index b36b291c395..8effb0c737d 100644 --- a/lib/Support/Windows/PathV2.inc +++ b/lib/Support/Windows/PathV2.inc @@ -17,7 +17,7 @@ //===----------------------------------------------------------------------===// #include "Windows.h" -#include +#include #include #include #include diff --git a/lib/Support/Windows/Windows.h b/lib/Support/Windows/Windows.h index 6e0b585b975..dfa4be3a154 100644 --- a/lib/Support/Windows/Windows.h +++ b/lib/Support/Windows/Windows.h @@ -22,8 +22,8 @@ #define WIN32_LEAN_AND_MEAN #include "llvm/Config/config.h" // Get build system configuration settings -#include -#include +#include +#include #include #include diff --git a/lib/Support/Windows/system_error.inc b/lib/Support/Windows/system_error.inc index 64753d0eea8..37ec81dd363 100644 --- a/lib/Support/Windows/system_error.inc +++ b/lib/Support/Windows/system_error.inc @@ -17,8 +17,8 @@ //=== is guaranteed to work on *all* Windows variants. //===----------------------------------------------------------------------===// -#include -#include +#include +#include using namespace llvm; diff --git a/utils/unittest/UnitTestMain/TestMain.cpp b/utils/unittest/UnitTestMain/TestMain.cpp index 4469c03f501..b35bae5abfb 100644 --- a/utils/unittest/UnitTestMain/TestMain.cpp +++ b/utils/unittest/UnitTestMain/TestMain.cpp @@ -13,7 +13,7 @@ #if defined(LLVM_ON_WIN32) -# include +# include # if defined(_MSC_VER) # include # endif