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

Unified Diff: runtime/vm/isolate.cc

Issue 12871015: SIMD plumbing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix FPU register move instruction on x64 Created 7 years, 9 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 6afc6fbfa1710ad8c1520a05067074e792208277..7dc11ffd1621037d3c8ea4d645905b1c2672f212 100644
--- a/runtime/vm/isolate.cc
+++ b/runtime/vm/isolate.cc
@@ -288,7 +288,9 @@ Isolate::Isolate()
deopt_frame_copy_(NULL),
deopt_frame_copy_size_(0),
deferred_doubles_(NULL),
- deferred_mints_(NULL) {
+ deferred_mints_(NULL),
+ deferred_float32x4s_(NULL),
+ deferred_uint32x4s_(NULL) {
}

Powered by Google App Engine
This is Rietveld 408576698