mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-07 16:42:07 +00:00
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:
parent
26bfda9dd3
commit
cfa2c32166
@ -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…
x
Reference in New Issue
Block a user