Index: src/objects-inl.h |
diff --git a/src/objects-inl.h b/src/objects-inl.h |
index b2efe2b2a84549799fb916f6edde90556bf6f984..8b77b11b5e923e04b33823027f1f88d0b5a4e627 100644 |
--- a/src/objects-inl.h |
+++ b/src/objects-inl.h |
@@ -1944,7 +1944,7 @@ void FixedArray::set_null_unchecked(Heap* heap, int index) { |
double* FixedDoubleArray::data_start() { |
- return &READ_DOUBLE_FIELD(this, kHeaderSize); |
+ return reinterpret_cast<double*>(FIELD_ADDR(this, kHeaderSize)); |
palfia
2012/11/21 00:50:50
I've modified this line, because the READ_DOUBLE_F
|
} |