| Index: src/isolate.cc
|
| diff --git a/src/isolate.cc b/src/isolate.cc
|
| index 2c15717c7ac2a12f238eb0c859114a1d02169572..17762b2b0bf9b163cf405531ef97773e53e0495e 100644
|
| --- a/src/isolate.cc
|
| +++ b/src/isolate.cc
|
| @@ -2145,7 +2145,6 @@ void Isolate::InitializeDebugger() {
|
|
|
| bool Isolate::Init(Deserializer* des) {
|
| ASSERT(state_ != INITIALIZED);
|
| - ASSERT(Isolate::Current() == this);
|
| TRACE_ISOLATE(init);
|
|
|
| stress_deopt_count_ = FLAG_deopt_every_n_times;
|
| @@ -2174,8 +2173,7 @@ bool Isolate::Init(Deserializer* des) {
|
| memory_allocator_ = new MemoryAllocator(this);
|
| code_range_ = new CodeRange(this);
|
|
|
| - // Safe after setting Heap::isolate_, initializing StackGuard and
|
| - // ensuring that Isolate::Current() == this.
|
| + // Safe after setting Heap::isolate_, and initializing StackGuard
|
| heap_.SetStackLimits();
|
|
|
| #define ASSIGN_ELEMENT(CamelName, hacker_name) \
|
|
|