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

Unified Diff: runtime/vm/object_store.h

Issue 12907023: Really remove SIMD types from dart:scalarlist. Fixes build. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Really remove SIMD types from dart:scalarlist. 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
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_store.h
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index 60131b59c38038c260a7f07056542aa1c4dff50d..573beaca66e8accb6f3aa05b8fb1f43f57a8674d 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -251,13 +251,6 @@ class ObjectStore {
uint64_array_class_ = value.raw();
}
- RawClass* float32x4_array_class() const {
- return float32x4_array_class_;
- }
- void set_float32x4_array_class(const Class& value) {
- float32x4_array_class_ = value.raw();
- }
-
RawClass* float32_array_class() const {
return float32_array_class_;
}
@@ -335,12 +328,6 @@ class ObjectStore {
external_uint64_array_class_ = value.raw();
}
- RawClass* external_float32x4_array_class() const {
- return external_float32x4_array_class_;
- }
- void set_external_float32x4_array_class(const Class& value) {
- external_float32x4_array_class_ = value.raw();
- }
RawClass* external_float32_array_class() const {
return external_float32_array_class_;
@@ -640,7 +627,6 @@ class ObjectStore {
RawClass* uint32_array_class_;
RawClass* int64_array_class_;
RawClass* uint64_array_class_;
- RawClass* float32x4_array_class_;
RawClass* float32_array_class_;
RawClass* float64_array_class_;
RawClass* external_int8_array_class_;
@@ -652,7 +638,6 @@ class ObjectStore {
RawClass* external_uint32_array_class_;
RawClass* external_int64_array_class_;
RawClass* external_uint64_array_class_;
- RawClass* external_float32x4_array_class_;
RawClass* external_float32_array_class_;
RawClass* external_float64_array_class_;
RawArray* typeddata_classes_;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698