From 944511621e77e59c315ea5edb05718c5ad754b6a Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Tue, 17 Feb 2015 15:36:01 +0000 Subject: [PATCH] ADT/PointerIntPairTest.cpp: Prune obsolete #if. We don't support msc17 anymore. llvm-svn: 229501 --- llvm/unittests/ADT/PointerIntPairTest.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/llvm/unittests/ADT/PointerIntPairTest.cpp b/llvm/unittests/ADT/PointerIntPairTest.cpp index 296d475..0bbcd9f 100644 --- a/llvm/unittests/ADT/PointerIntPairTest.cpp +++ b/llvm/unittests/ADT/PointerIntPairTest.cpp @@ -42,7 +42,6 @@ TEST_F(PointerIntPairTest, DefaultInitialize) { 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, ManyUnusedBits) { EXPECT_EQ(FixnumPointerTraits::NumLowBitsAvailable - 1, PointerLikeTypeTraits::NumLowBitsAvailable); } -#endif } // end anonymous namespace -- 2.7.4