Index: src/factory.cc |
diff --git a/src/factory.cc b/src/factory.cc |
index 4fb5ec4644f8c972505f71a81ab9c8f647ac5ba9..e2a5e05693a1202c1f1a41b1ccc7bb47d78580ee 100644 |
--- a/src/factory.cc |
+++ b/src/factory.cc |
@@ -874,10 +874,11 @@ Handle<ByteArray> Factory::NewByteArray(int length, PretenureFlag pretenure) { |
Handle<BytecodeArray> Factory::NewBytecodeArray(int length, |
- const byte* raw_bytecodes) { |
+ const byte* raw_bytecodes, |
+ int frame_size) { |
DCHECK(0 <= length); |
CALL_HEAP_FUNCTION(isolate(), isolate()->heap()->AllocateBytecodeArray( |
- length, raw_bytecodes), |
+ length, raw_bytecodes, frame_size), |
BytecodeArray); |
} |