diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-08-09 23:12:20 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-08-09 23:12:20 +0000 |
commit | 0e1b31c2fd5b798c3d29f4806bab4e8c11d2ddad (patch) | |
tree | a7eeebfe055cb3e0cbb69d841de5ad089002d73a /llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp | |
parent | c6dbc22b9b4e3352bfefc2b774aea6b50ff439d8 (diff) | |
download | bcm5719-llvm-0e1b31c2fd5b798c3d29f4806bab4e8c11d2ddad.tar.gz bcm5719-llvm-0e1b31c2fd5b798c3d29f4806bab4e8c11d2ddad.zip |
ADT: remove MinGW32 and Cygwin OSType enum
Remove the MinGW32 and Cygwin types from the OSType enumeration. These values
are represented via environments of Windows. It is a source of confusion and
needlessly clutters the code. The cost of doing this is that we must sink the
check for them into the normalization code path along with the spelling.
Addresses PR20592.
llvm-svn: 215303
Diffstat (limited to 'llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp')
-rw-r--r-- | llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp b/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp index d03de898b4e..c80b88b8c2b 100644 --- a/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp +++ b/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp @@ -139,8 +139,6 @@ protected: // The operating systems below are known to be sufficiently incompatible // that they will fail the MCJIT C API tests. - UnsupportedOSs.push_back(Triple::Cygwin); - UnsupportedEnvironments.push_back(Triple::Cygnus); } |