diff options
Diffstat (limited to 'deps/v8/src/x64/virtual-frame-x64.h')
-rw-r--r-- | deps/v8/src/x64/virtual-frame-x64.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/deps/v8/src/x64/virtual-frame-x64.h b/deps/v8/src/x64/virtual-frame-x64.h index e492305079..88cf2bca07 100644 --- a/deps/v8/src/x64/virtual-frame-x64.h +++ b/deps/v8/src/x64/virtual-frame-x64.h @@ -200,6 +200,9 @@ class VirtualFrame : public ZoneObject { // shared return site. Emits code for spills. void PrepareForReturn(); + // Number of local variables after when we use a loop for allocating. + static const int kLocalVarBound = 7; + // Allocate and initialize the frame-allocated locals. void AllocateStackSlots(); |