Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Unified Diff: test/cctest/test-types.cc

Issue 567363002: Moar prints (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/types.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-types.cc
diff --git a/test/cctest/test-types.cc b/test/cctest/test-types.cc
index 1041f5c4252f49417ea170131ca9f0bfd7643f32..89fe0e2405896729174937a851ecb7f988bdab73 100644
--- a/test/cctest/test-types.cc
+++ b/test/cctest/test-types.cc
@@ -409,8 +409,11 @@ struct Tests : Rep {
CHECK(this->IsBitset(T.Any));
CHECK(bitset(0) == this->AsBitset(T.None));
- printf("[BitSet] %p (%p) == %p (%p)\n",
+ printf("[BitSet] value=%p enum=%p bitset=%p any=%p this=%p any=%p\n",
reinterpret_cast<void*>(bitset(0xfffffffeu)),
+ reinterpret_cast<void*>(bitset(HeapType::BitsetType::kAny)),
+ reinterpret_cast<void*>(
+ HeapTypeConfig::from_bitset(HeapType::BitsetType::kAny)),
reinterpret_cast<void*>(HeapType::Any()),
reinterpret_cast<void*>(this->AsBitset(T.Any)),
reinterpret_cast<void*>(*T.Any));
« no previous file with comments | « src/types.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698