Commit da8c3550 authored by vitalyr@chromium.org's avatar vitalyr@chromium.org

Force inlining of BodyVisitorBase::IteratePointers.

Review URL: http://codereview.chromium.org/6042007

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6119 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent fba2ef6c
......@@ -186,9 +186,9 @@ class VisitorDispatchTable {
template<typename StaticVisitor>
class BodyVisitorBase : public AllStatic {
public:
static inline void IteratePointers(HeapObject* object,
INLINE(static void IteratePointers(HeapObject* object,
int start_offset,
int end_offset) {
int end_offset)) {
Object** start_slot = reinterpret_cast<Object**>(object->address() +
start_offset);
Object** end_slot = reinterpret_cast<Object**>(object->address() +
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment