forked from OSchip/llvm-project
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:
parent
f6afc80cc0
commit
2c1990778d
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue