Chromium Code Reviews

Unified Diff: src/objects-inl.h

Issue 8190: Revert changes 601 and 602. TBR (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « src/objects.cc ('k') | src/property.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects-inl.h
===================================================================
--- src/objects-inl.h (revision 602)
+++ src/objects-inl.h (working copy)
@@ -552,8 +552,8 @@
(*reinterpret_cast<byte*>(FIELD_ADDR(p, offset)) = value)
-Object*& HeapObject::RawField(HeapObject* obj, int byte_offset) {
- return READ_FIELD(obj, byte_offset);
+Object* HeapObject::GetHeapObjectField(HeapObject* obj, int index) {
+ return READ_FIELD(obj, HeapObject::kHeaderSize + kPointerSize * index);
}
« no previous file with comments | « src/objects.cc ('k') | src/property.h » ('j') | no next file with comments »

Powered by Google App Engine