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

Unified Diff: runtime/vm/object.h

Issue 51333005: Add Uint32x4List to typed_data (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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/intrinsifier.h ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 4f548314e4f63aa989069b84b8000a541d568b52..81de3ceabee1a97bc1e4053f640e3dd93c63219a 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -5650,6 +5650,7 @@ class TypedData : public Instance {
TYPED_GETTER_SETTER(Float32, float)
TYPED_GETTER_SETTER(Float64, double)
TYPED_GETTER_SETTER(Float32x4, simd128_value_t)
+ TYPED_GETTER_SETTER(Uint32x4, simd128_value_t)
#undef TYPED_GETTER_SETTER
@@ -5782,7 +5783,8 @@ class ExternalTypedData : public Instance {
TYPED_GETTER_SETTER(Uint64, uint64_t)
TYPED_GETTER_SETTER(Float32, float)
TYPED_GETTER_SETTER(Float64, double)
- TYPED_GETTER_SETTER(Float32x4, simd128_value_t);
+ TYPED_GETTER_SETTER(Float32x4, simd128_value_t)
+ TYPED_GETTER_SETTER(Uint32x4, simd128_value_t);
#undef TYPED_GETTER_SETTER
« no previous file with comments | « runtime/vm/intrinsifier.h ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698