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.

llvm-svn: 228229
This commit is contained in:
Reid Kleckner 2015-02-04 23:17:19 +00:00
parent f6afc80cc0
commit 2c1990778d
1 changed files with 1 additions and 1 deletions

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)