projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a50a12
)
ADT/PointerIntPairTest.cpp: Prune obsolete #if. We don't support msc17 anymore.
author
NAKAMURA Takumi
<geek4civic@gmail.com>
Tue, 17 Feb 2015 15:36:01 +0000
(15:36 +0000)
committer
NAKAMURA Takumi
<geek4civic@gmail.com>
Tue, 17 Feb 2015 15:36:01 +0000
(15:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229501
91177308
-0d34-0410-b5e6-
96231b3b80d8
unittests/ADT/PointerIntPairTest.cpp
patch
|
blob
|
history
diff --git
a/unittests/ADT/PointerIntPairTest.cpp
b/unittests/ADT/PointerIntPairTest.cpp
index
296d475
..
0bbcd9f
100644
(file)
--- a/
unittests/ADT/PointerIntPairTest.cpp
+++ b/
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<decltype(pair)>::NumLowBitsAvailable);
}
-#endif
} // end anonymous namespace