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

Unified Diff: dart/runtime/platform/globals.h

Issue 59073003: Version 0.8.10.4 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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 | « dart/runtime/lib/typed_data.dart ('k') | dart/runtime/vm/bootstrap_natives.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/platform/globals.h
===================================================================
--- dart/runtime/platform/globals.h (revision 29808)
+++ dart/runtime/platform/globals.h (working copy)
@@ -81,7 +81,7 @@
storage[3] = v[3];
return *this;
}
- simd128_value_t& readFrom(const uint32_t* v) {
+ simd128_value_t& readFrom(const int32_t* v) {
const float* vv = reinterpret_cast<const float*>(v);
storage[0] = vv[0];
storage[1] = vv[1];
@@ -99,7 +99,7 @@
v[2] = storage[2];
v[3] = storage[3];
}
- void writeTo(uint32_t* v) {
+ void writeTo(int32_t* v) {
float* vv = reinterpret_cast<float*>(v);
vv[0] = storage[0];
vv[1] = storage[1];
« no previous file with comments | « dart/runtime/lib/typed_data.dart ('k') | dart/runtime/vm/bootstrap_natives.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698