Index: src/x64/codegen-x64.cc |
diff --git a/src/x64/codegen-x64.cc b/src/x64/codegen-x64.cc |
index e13b2e9004929de5c6e6b18043445893a5a3f051..bebe4682d65e0fdc5839903d3002f3fb97da0689 100644 |
--- a/src/x64/codegen-x64.cc |
+++ b/src/x64/codegen-x64.cc |
@@ -206,7 +206,7 @@ void CodeGenerator::Generate(CompilationInfo* info) { |
frame_->AllocateStackSlots(); |
// Allocate the local context if needed. |
- int heap_slots = scope()->num_heap_slots(); |
+ int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; |
if (heap_slots > 0) { |
Comment cmnt(masm_, "[ allocate local context"); |
// Allocate local context. |