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

Unified Diff: runtime/vm/raw_object.h

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/raw_object.h
diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
index 82ba994d770d9a1590968d477a1d63a1db844061..be0ea21fd35874ada85b37dcff70111bec09861d 100644
--- a/runtime/vm/raw_object.h
+++ b/runtime/vm/raw_object.h
@@ -1525,7 +1525,7 @@ class RawFloat32x4Array : public RawByteArray {
RAW_HEAP_OBJECT_IMPLEMENTATION(Float32x4Array);
// Variable length data follows here.
- simd_value_t data_[0];
+ simd128_value_t data_[0];
};
class RawFloat32Array : public RawByteArray {
@@ -1620,7 +1620,7 @@ class RawExternalUint64Array : public RawByteArray {
class RawExternalFloat32x4Array : public RawByteArray {
RAW_HEAP_OBJECT_IMPLEMENTATION(ExternalFloat32x4Array);
- simd_value_t* data_;
+ simd128_value_t* data_;
void* peer_;
};

Powered by Google App Engine
This is Rietveld 408576698