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

Unified Diff: dart/runtime/vm/deferred_objects.cc

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/vm/deferred_objects.h ('k') | dart/runtime/vm/deopt_instructions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/vm/deferred_objects.cc
===================================================================
--- dart/runtime/vm/deferred_objects.cc (revision 29808)
+++ dart/runtime/vm/deferred_objects.cc (working copy)
@@ -54,17 +54,17 @@
}
-void DeferredUint32x4::Materialize() {
- RawUint32x4** uint32x4_slot = reinterpret_cast<RawUint32x4**>(slot());
- RawUint32x4* raw_uint32x4 = Uint32x4::New(value());
- *uint32x4_slot = raw_uint32x4;
+void DeferredInt32x4::Materialize() {
+ RawInt32x4** int32x4_slot = reinterpret_cast<RawInt32x4**>(slot());
+ RawInt32x4* raw_int32x4 = Int32x4::New(value());
+ *int32x4_slot = raw_int32x4;
if (FLAG_trace_deoptimization_verbose) {
- uint32_t x = raw_uint32x4->x();
- uint32_t y = raw_uint32x4->y();
- uint32_t z = raw_uint32x4->z();
- uint32_t w = raw_uint32x4->w();
- OS::PrintErr("materializing Uint32x4 at %" Px ": %x,%x,%x,%x\n",
+ uint32_t x = raw_int32x4->x();
+ uint32_t y = raw_int32x4->y();
+ uint32_t z = raw_int32x4->z();
+ uint32_t w = raw_int32x4->w();
+ OS::PrintErr("materializing Int32x4 at %" Px ": %x,%x,%x,%x\n",
reinterpret_cast<uword>(slot()), x, y, z, w);
}
}
« no previous file with comments | « dart/runtime/vm/deferred_objects.h ('k') | dart/runtime/vm/deopt_instructions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698