| Index: src/mark-compact.cc
|
| diff --git a/src/mark-compact.cc b/src/mark-compact.cc
|
| index 6a21419e91b145175cf6506188fd95ab99d4f2af..6acf5f2599a5b40941ebcf45fcb377664b330214 100644
|
| --- a/src/mark-compact.cc
|
| +++ b/src/mark-compact.cc
|
| @@ -1293,9 +1293,9 @@ class MarkCompactMarkingVisitor
|
|
|
| // Visit all unmarked objects pointed to by [start, end).
|
| // Returns false if the operation fails (lack of stack space).
|
| - static inline bool VisitUnmarkedObjects(Heap* heap,
|
| + INLINE(static bool VisitUnmarkedObjects(Heap* heap,
|
| Object** start,
|
| - Object** end) {
|
| + Object** end)) {
|
| // Return false is we are close to the stack limit.
|
| StackLimitCheck check(heap->isolate());
|
| if (check.HasOverflowed()) return false;
|
|
|