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

Unified Diff: runtime/vm/snapshot.cc

Issue 12534006: Port SIMD types from dart:scalarlist to dart:typeddata. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/snapshot.cc
diff --git a/runtime/vm/snapshot.cc b/runtime/vm/snapshot.cc
index 417461c589fec24a3dac65bf8f776edf5fa83f0e..fe8eba4fb37c1fd9ad4cca5e88e3c68868e90fa7 100644
--- a/runtime/vm/snapshot.cc
+++ b/runtime/vm/snapshot.cc
@@ -457,7 +457,7 @@ RawClass* SnapshotReader::NewClass(intptr_t class_id) {
ASSERT(isolate()->no_gc_scope_depth() != 0);
if (class_id < kNumPredefinedCids) {
ASSERT((class_id >= kInstanceCid) &&
- (class_id <= kExternalTypedDataFloat64ArrayCid));
+ (class_id <= kExternalTypedDataFloat32x4ArrayCid));
return isolate()->class_table()->At(class_id);
}
cls_ = Object::class_class();

Powered by Google App Engine
This is Rietveld 408576698