| Index: src/ia32/code-stubs-ia32.cc
|
| diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc
|
| index 2db3e65a4718b2dc929d0c21befd77a6ea10d209..a863e39b3b86e0ff413c8d3478e06f0f409e0f1b 100644
|
| --- a/src/ia32/code-stubs-ia32.cc
|
| +++ b/src/ia32/code-stubs-ia32.cc
|
| @@ -4681,8 +4681,8 @@ void CallFunctionStub::Generate(MacroAssembler* masm) {
|
| __ Set(eax, Immediate(argc_));
|
| __ Set(ebx, Immediate(0));
|
| __ GetBuiltinEntry(edx, Builtins::CALL_NON_FUNCTION);
|
| - Handle<Code> adaptor(masm->isolate()->builtins()->builtin(
|
| - Builtins::ArgumentsAdaptorTrampoline));
|
| + Handle<Code> adaptor =
|
| + masm->isolate()->builtins()->ArgumentsAdaptorTrampoline();
|
| __ jmp(adaptor, RelocInfo::CODE_TARGET);
|
| }
|
|
|
| @@ -4950,11 +4950,11 @@ void JSEntryStub::GenerateBody(MacroAssembler* masm, bool is_construct) {
|
| // stub, because the builtin stubs may not have been generated yet.
|
| if (is_construct) {
|
| ExternalReference construct_entry(
|
| - Builtins::JSConstructEntryTrampoline,
|
| + Builtins::kJSConstructEntryTrampoline,
|
| masm->isolate());
|
| __ mov(edx, Immediate(construct_entry));
|
| } else {
|
| - ExternalReference entry(Builtins::JSEntryTrampoline,
|
| + ExternalReference entry(Builtins::kJSEntryTrampoline,
|
| masm->isolate());
|
| __ mov(edx, Immediate(entry));
|
| }
|
|
|