| Index: src/isolate.cc
|
| diff --git a/src/isolate.cc b/src/isolate.cc
|
| index bf9b345049ed7c6668c54891bd97c6a8c7b8665f..e80512239d25f0301b1f1575e033f9ea8a5e0974 100644
|
| --- a/src/isolate.cc
|
| +++ b/src/isolate.cc
|
| @@ -1842,6 +1842,9 @@ bool Isolate::Init(Deserializer* des) {
|
| // stack guard.
|
| heap_.SetStackLimits();
|
|
|
| + // Quiet the heap NaN if needed on target platform.
|
| + if (des != NULL) Assembler::QuietNaN(heap_.nan_value());
|
| +
|
| deoptimizer_data_ = new DeoptimizerData;
|
| runtime_profiler_ = new RuntimeProfiler(this);
|
| runtime_profiler_->SetUp();
|
|
|