Commit 86d537e5 authored by rossberg@chromium.org's avatar rossberg@chromium.org

moar printf

TBR=ulan@chromium.org
BUG=

Review URL: https://codereview.chromium.org/571913002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23937 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 21e0e00a
......@@ -409,9 +409,11 @@ struct Tests : Rep {
CHECK(this->IsBitset(T.Any));
CHECK(bitset(0) == this->AsBitset(T.None));
printf("[BitSet] %p == %p\n",
printf("[BitSet] %p (%p) == %p (%p)\n",
reinterpret_cast<void*>(bitset(0xfffffffeu)),
reinterpret_cast<void*>(this->AsBitset(T.Any)));
reinterpret_cast<void*>(HeapType::Any()),
reinterpret_cast<void*>(this->AsBitset(T.Any)),
reinterpret_cast<void*>(*T.Any));
CHECK(bitset(0xfffffffeu) == this->AsBitset(T.Any));
// Union(T1, T2) is bitset for bitsets T1,T2
......@@ -1826,7 +1828,7 @@ typedef Tests<HeapType, Handle<HeapType>, Isolate, HeapRep> HeapTests;
TEST(BitsetType) {
CcTest::InitializeVM();
ZoneTests().Bitset();
// ZoneTests().Bitset();
HeapTests().Bitset();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment