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

Unified Diff: src/objects-inl.h

Issue 11377132: Support all fast elements kinds in the major array operations. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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
Index: src/objects-inl.h
diff --git a/src/objects-inl.h b/src/objects-inl.h
index ab9ce1af127c07043a0909ec3908cb1b90a14696..1d42c46e1560e73f3d7db6a26e0cdbd4ffb33eaf 100644
--- a/src/objects-inl.h
+++ b/src/objects-inl.h
@@ -1944,7 +1944,7 @@ void FixedArray::set_null_unchecked(Heap* heap, int index) {
}
-Object** FixedArray::data_start() {
+Object** FixedArrayBase::data_start() {
danno 2012/11/13 22:05:12 Whoa. Either return a void* and the caller has to
Toon Verwaest 2012/11/14 11:53:13 Done.
return HeapObject::RawField(this, kHeaderSize);
}

Powered by Google App Engine
This is Rietveld 408576698