| Index: src/ic/ic.cc
|
| diff --git a/src/ic/ic.cc b/src/ic/ic.cc
|
| index ce5cc78b4391c0a1dca9f2361169d809e2f53fc4..166cb76f6a48f9c205a3d6509a948915a3e37964 100644
|
| --- a/src/ic/ic.cc
|
| +++ b/src/ic/ic.cc
|
| @@ -1600,8 +1600,9 @@ MaybeHandle<Object> StoreIC::Store(Handle<Object> object, Handle<Name> name,
|
|
|
|
|
| Handle<Code> CallIC::initialize_stub(Isolate* isolate, int argc,
|
| - CallICState::CallType call_type) {
|
| - CallICTrampolineStub stub(isolate, CallICState(argc, call_type));
|
| + CallICState::CallType call_type,
|
| + bool is_spread) {
|
| + CallICTrampolineStub stub(isolate, CallICState(argc, call_type, is_spread));
|
| Handle<Code> code = stub.GetCode();
|
| return code;
|
| }
|
|
|