From: Saleem Abdulrasool Date: Wed, 19 Nov 2014 21:55:31 +0000 (+0000) Subject: ADT: windows itanium targets msvcrt.dll X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=06f9f40a1ecc47ded712d846b6e23a749e2b591f;p=llvm ADT: windows itanium targets msvcrt.dll Update the isOSMSVCRT to correctly identify that windows-itanium uses msvcrt.dll. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222389 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/Triple.h b/include/llvm/ADT/Triple.h index 443239063c0..fbc19f899d4 100644 --- a/include/llvm/ADT/Triple.h +++ b/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.