Index: src/interpreter/bytecode-array-builder.cc |
diff --git a/src/interpreter/bytecode-array-builder.cc b/src/interpreter/bytecode-array-builder.cc |
index 652c32d35dbcc48b3696d5e828daa941b0537b3f..6f6745c3b77599f5991cbb1fe4c414605a9848b8 100644 |
--- a/src/interpreter/bytecode-array-builder.cc |
+++ b/src/interpreter/bytecode-array-builder.cc |
@@ -894,6 +894,11 @@ BytecodeArrayBuilder& BytecodeArrayBuilder::Call(Register callable, |
return *this; |
} |
+BytecodeArrayBuilder& BytecodeArrayBuilder::CallWithSpread(RegisterList args) { |
+ OutputCallWithSpread(args, args.register_count()); |
+ return *this; |
+} |
+ |
BytecodeArrayBuilder& BytecodeArrayBuilder::New(Register constructor, |
RegisterList args, |
int feedback_slot_id) { |