From 06f9f40a1ecc47ded712d846b6e23a749e2b591f 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222389 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ADT/Triple.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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.