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

Unified Diff: runtime/vm/intermediate_language_arm.cc

Issue 174353003: Use the correct value offset for Float64x2 on ARM (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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 | « no previous file | tests/lib/typed_data/float64x2_functional_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intermediate_language_arm.cc
diff --git a/runtime/vm/intermediate_language_arm.cc b/runtime/vm/intermediate_language_arm.cc
index 499e1612f2fad4bab1768f8ba6dd2515529fb8aa..0de228e8ae8330d4b1a082e18bfbccc5c3e89232 100644
--- a/runtime/vm/intermediate_language_arm.cc
+++ b/runtime/vm/intermediate_language_arm.cc
@@ -3096,9 +3096,9 @@ void BoxFloat64x2Instr::EmitNativeCode(FlowGraphCompiler* compiler) {
__ Bind(slow_path->exit_label());
__ StoreDToOffset(value_even, out_reg,
- Float32x4::value_offset() - kHeapObjectTag);
+ Float64x2::value_offset() - kHeapObjectTag);
__ StoreDToOffset(value_odd, out_reg,
- Float32x4::value_offset() + 2 * kWordSize - kHeapObjectTag);
+ Float64x2::value_offset() + 2 * kWordSize - kHeapObjectTag);
}
« no previous file with comments | « no previous file | tests/lib/typed_data/float64x2_functional_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698