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

Unified Diff: runtime/vm/isolate.cc

Issue 10919008: Unbox phis that were proven to be of type Double. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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: runtime/vm/isolate.cc
diff --git a/runtime/vm/isolate.cc b/runtime/vm/isolate.cc
index 8b14ea6ab7f06af3bdb77229f5479fb644a53cf9..f30a02cf433c5435f5790caf8c74f7b7c89e2a5f 100644
--- a/runtime/vm/isolate.cc
+++ b/runtime/vm/isolate.cc
@@ -167,9 +167,11 @@ Isolate::Isolate()
spawn_data_(NULL),
gc_prologue_callbacks_(),
gc_epilogue_callbacks_(),
- deopt_registers_copy_(NULL),
+ deopt_cpu_registers_copy_(NULL),
+ deopt_xmm_registers_copy_(NULL),
deopt_frame_copy_(NULL),
- deopt_frame_copy_size_(0) {
+ deopt_frame_copy_size_(0),
+ deferred_doubles_(NULL) {
}

Powered by Google App Engine
This is Rietveld 408576698