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

Unified Diff: src/isolate.cc

Issue 8130002: Make accessors for oddball objects return Oddball* instead of Object*. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 2 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/isolate.cc
===================================================================
--- src/isolate.cc (revision 9511)
+++ src/isolate.cc (working copy)
@@ -1739,8 +1739,6 @@
return false;
}
- InitializeThreadLocal();
-
bootstrapper_->Initialize(create_heap_objects);
builtins_.Setup(create_heap_objects);
@@ -1771,6 +1769,8 @@
stub_cache_->Initialize(true);
}
+ InitializeThreadLocal();
fschneider 2011/10/04 10:48:52 Calls clear_pending_exception() which uses heap->t
+
// Deserializing may put strange things in the root array's copy of the
// stack guard.
heap_.SetStackLimits();

Powered by Google App Engine
This is Rietveld 408576698