Index: src/stub-cache.cc |
diff --git a/src/stub-cache.cc b/src/stub-cache.cc |
index 0c6a7f7438de5136f0fd7e437b7a4fd665efc7cf..24b49ea9ed52d0da6a07c9485b4544e2ed722a61 100644 |
--- a/src/stub-cache.cc |
+++ b/src/stub-cache.cc |
@@ -42,7 +42,6 @@ namespace internal { |
StubCache::StubCache(Isolate* isolate) : isolate_(isolate) { |
- ASSERT(isolate == Isolate::Current()); |
Vitaly Repeshko
2011/04/15 00:29:39
Please restore this (see my comment in isolate.cc)
Dmitry Lomov
2011/04/19 01:50:47
Done.
|
memset(primary_, 0, sizeof(primary_[0]) * StubCache::kPrimaryTableSize); |
memset(secondary_, 0, sizeof(secondary_[0]) * StubCache::kSecondaryTableSize); |
} |