From d93189b80aede6a60a05518289e21a0bf5e992e3 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Wed, 19 Nov 2014 21:55:31 +0000 Subject: [PATCH] ADT: windows itanium targets msvcrt.dll Update the isOSMSVCRT to correctly identify that windows-itanium uses msvcrt.dll. llvm-svn: 222389 --- llvm/include/llvm/ADT/Triple.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/include/llvm/ADT/Triple.h b/llvm/include/llvm/ADT/Triple.h index 4432390..fbc19f8 100644 --- a/llvm/include/llvm/ADT/Triple.h +++ b/llvm/include/llvm/ADT/Triple.h @@ -397,7 +397,8 @@ public: /// \brief Is this a "Windows" OS targeting a "MSVCRT.dll" environment. bool isOSMSVCRT() const { - return isWindowsMSVCEnvironment() || isWindowsGNUEnvironment(); + return isWindowsMSVCEnvironment() || isWindowsGNUEnvironment() || + isWindowsItaniumEnvironment(); } /// \brief Tests whether the OS is Windows. -- 2.7.4