Index: src/isolate.cc |
diff --git a/src/isolate.cc b/src/isolate.cc |
index bf9b345049ed7c6668c54891bd97c6a8c7b8665f..6aaf9add5b95dc28c04184a703b7278d33a1c7bd 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()); |
Erik Corry
2012/04/20 14:55:25
Missing space after 'if'
|
+ |
deoptimizer_data_ = new DeoptimizerData; |
runtime_profiler_ = new RuntimeProfiler(this); |
runtime_profiler_->SetUp(); |