summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/ADT
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2014-08-09 23:12:20 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2014-08-09 23:12:20 +0000
commit0e1b31c2fd5b798c3d29f4806bab4e8c11d2ddad (patch)
treea7eeebfe055cb3e0cbb69d841de5ad089002d73a /llvm/unittests/ADT
parentc6dbc22b9b4e3352bfefc2b774aea6b50ff439d8 (diff)
downloadbcm5719-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/ADT')
-rw-r--r--llvm/unittests/ADT/TripleTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ADT/TripleTest.cpp b/llvm/unittests/ADT/TripleTest.cpp
index dfc99837d4b..2a49afc27fa 100644
--- a/llvm/unittests/ADT/TripleTest.cpp
+++ b/llvm/unittests/ADT/TripleTest.cpp
@@ -190,7 +190,7 @@ TEST(TripleTest, Normalization) {
++Vendor) {
C[1] = Triple::getVendorTypeName(Triple::VendorType(Vendor));
for (int OS = 1+Triple::UnknownOS; OS <= Triple::Minix; ++OS) {
- if (OS == Triple::Cygwin || OS == Triple::MinGW32 || OS == Triple::Win32)
+ if (OS == Triple::Win32)
continue;
C[2] = Triple::getOSTypeName(Triple::OSType(OS));
OpenPOWER on IntegriCloud