| Index: src/x87/builtins-x87.cc
|
| diff --git a/src/x87/builtins-x87.cc b/src/x87/builtins-x87.cc
|
| index 80caa613bf98b8b89247a1882883578d30f3721c..659e5a3debebd1a75ec91c1bbef4a4e36ac27bb6 100644
|
| --- a/src/x87/builtins-x87.cc
|
| +++ b/src/x87/builtins-x87.cc
|
| @@ -546,6 +546,10 @@ void Builtins::Generate_InterpreterEntryTrampoline(MacroAssembler* masm) {
|
| __ push(edi); // Callee's JS function.
|
| __ push(edx); // Callee's new target.
|
|
|
| + // Push dispatch table pointer.
|
| + __ mov(eax, Immediate(ExternalReference::interpreter_dispatch_table_address(
|
| + masm->isolate())));
|
| + __ push(eax);
|
| // Push zero for bytecode array offset.
|
| __ push(Immediate(0));
|
|
|
|
|