Remove useless call to isOSCygMing()

This used to do something when we modeled the Cygwin and MinGW
environments as distinct OSs, but now it is not needed.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228229 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Kleckner 2015-02-04 23:17:19 +00:00
parent 26bfda9dd3
commit cfa2c32166

View File

@ -428,7 +428,7 @@ public:
/// \brief Tests whether the OS is Windows.
bool isOSWindows() const {
return getOS() == Triple::Win32 || isOSCygMing();
return getOS() == Triple::Win32;
}
/// \brief Tests whether the OS is NaCl (Native Client)