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

Unified Diff: src/stub-cache.cc

Issue 6788023: Per-isolate v8::Locker and v8::Unlocker (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: New tests for IsLocker Created 9 years, 8 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
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);
}

Powered by Google App Engine
This is Rietveld 408576698