Index: src/crankshaft/x87/lithium-codegen-x87.cc |
diff --git a/src/crankshaft/x87/lithium-codegen-x87.cc b/src/crankshaft/x87/lithium-codegen-x87.cc |
index 1283ac075818f1562178738d42f9cb7885f4e0e4..485b62239873c95a9548441d3e237532f5bb88dd 100644 |
--- a/src/crankshaft/x87/lithium-codegen-x87.cc |
+++ b/src/crankshaft/x87/lithium-codegen-x87.cc |
@@ -135,11 +135,11 @@ void LCodeGen::DoPrologue(LPrologue* instr) { |
Comment(";;; Prologue begin"); |
// Possibly allocate a local context. |
- if (info_->num_heap_slots() > 0) { |
+ if (info_->scope()->num_heap_slots() > 0) { |
Comment(";;; Allocate local context"); |
bool need_write_barrier = true; |
// Argument to NewContext is the function, which is still in edi. |
- int slots = info_->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; |
+ int slots = info_->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; |
Safepoint::DeoptMode deopt_mode = Safepoint::kNoLazyDeopt; |
if (info()->scope()->is_script_scope()) { |
__ push(edi); |