Index: src/mark-compact.cc |
diff --git a/src/mark-compact.cc b/src/mark-compact.cc |
index 26dfbb8a657e6d0ce86e5a06ed8a3ba1cb85e593..c5eabebbcbeece0443415793f85e8798d8404e5b 100644 |
--- a/src/mark-compact.cc |
+++ b/src/mark-compact.cc |
@@ -518,15 +518,15 @@ class StaticMarkingVisitor : public StaticVisitorBase { |
if (!ctx->IsHeapObject()) return false; |
Map* map = SafeMap(ctx); |
- if(!(map == Heap::raw_unchecked_context_map() || |
- map == Heap::raw_unchecked_catch_context_map() || |
- map == Heap::raw_unchecked_global_context_map())) { |
+ if (!(map == Heap::raw_unchecked_context_map() || |
+ map == Heap::raw_unchecked_catch_context_map() || |
+ map == Heap::raw_unchecked_global_context_map())) { |
return false; |
} |
Context* context = reinterpret_cast<Context*>(ctx); |
- if(IsJSBuiltinsObject(context->global())) { |
+ if (IsJSBuiltinsObject(context->global())) { |
return false; |
} |