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

Unified Diff: runtime/vm/object_store.cc

Issue 148043003: Add Float64x2, Float64x2List, etc... with runtime and dart2js implementations (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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/object_store.cc
diff --git a/runtime/vm/object_store.cc b/runtime/vm/object_store.cc
index fe389c2c2c6fd0af72c13765a779961785c317c6..c8a046c00bdee60b3c226e599da6ba7c079fc901 100644
--- a/runtime/vm/object_store.cc
+++ b/runtime/vm/object_store.cc
@@ -29,6 +29,9 @@ ObjectStore::ObjectStore()
mint_class_(Class::null()),
bigint_class_(Class::null()),
double_class_(Class::null()),
+ float32x4_type_(Type::null()),
+ int32x4_type_(Type::null()),
+ float64x2_type_(Type::null()),
string_type_(Type::null()),
one_byte_string_class_(Class::null()),
two_byte_string_class_(Class::null()),
@@ -42,6 +45,7 @@ ObjectStore::ObjectStore()
growable_object_array_class_(Class::null()),
float32x4_class_(Class::null()),
int32x4_class_(Class::null()),
+ float64x2_class_(Class::null()),
typed_data_classes_(Array::null()),
error_class_(Class::null()),
stacktrace_class_(Class::null()),

Powered by Google App Engine
This is Rietveld 408576698