[llvm] r229501 - ADT/PointerIntPairTest.cpp: Prune obsolete #if. We don't support msc17 anymore.

NAKAMURA Takumi geek4civic at gmail.com
Tue Feb 17 07:36:01 PST 2015


Author: chapuni
Date: Tue Feb 17 09:36:01 2015
New Revision: 229501

URL: http://llvm.org/viewvc/llvm-project?rev=229501&view=rev
Log:
ADT/PointerIntPairTest.cpp: Prune obsolete #if. We don't support msc17 anymore.

Modified:
    llvm/trunk/unittests/ADT/PointerIntPairTest.cpp

Modified: llvm/trunk/unittests/ADT/PointerIntPairTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ADT/PointerIntPairTest.cpp?rev=229501&r1=229500&r2=229501&view=diff
==============================================================================
--- llvm/trunk/unittests/ADT/PointerIntPairTest.cpp (original)
+++ llvm/trunk/unittests/ADT/PointerIntPairTest.cpp Tue Feb 17 09:36:01 2015
@@ -42,7 +42,6 @@ TEST_F(PointerIntPairTest, DefaultInitia
   EXPECT_EQ(0U, Pair.getInt());
 }
 
-#if !(defined(_MSC_VER) && _MSC_VER==1700)
 TEST_F(PointerIntPairTest, ManyUnusedBits) {
   // In real code this would be a word-sized integer limited to 31 bits.
   struct Fixnum31 {
@@ -71,6 +70,5 @@ TEST_F(PointerIntPairTest, ManyUnusedBit
   EXPECT_EQ(FixnumPointerTraits::NumLowBitsAvailable - 1,
             PointerLikeTypeTraits<decltype(pair)>::NumLowBitsAvailable);
 }
-#endif
 
 } // end anonymous namespace





More information about the llvm-commits mailing list