| Index: src/builtins/x87/builtins-x87.cc
|
| diff --git a/src/builtins/x87/builtins-x87.cc b/src/builtins/x87/builtins-x87.cc
|
| index a3fc2346f2bc2e3ae70c7951e2227d7412234036..8e096a3d0bb2d56b93ebaf3b2bd9035992c512c9 100644
|
| --- a/src/builtins/x87/builtins-x87.cc
|
| +++ b/src/builtins/x87/builtins-x87.cc
|
| @@ -2058,10 +2058,9 @@ void Builtins::Generate_StringConstructor(MacroAssembler* masm) {
|
| __ bind(&to_string);
|
| {
|
| FrameScope scope(masm, StackFrame::MANUAL);
|
| - ToStringStub stub(masm->isolate());
|
| __ SmiTag(ebx);
|
| __ EnterBuiltinFrame(esi, edi, ebx);
|
| - __ CallStub(&stub);
|
| + __ Call(masm->isolate()->builtins()->ToString(), RelocInfo::CODE_TARGET);
|
| __ LeaveBuiltinFrame(esi, edi, ebx);
|
| __ SmiUntag(ebx);
|
| }
|
| @@ -2125,11 +2124,10 @@ void Builtins::Generate_StringConstructor_ConstructStub(MacroAssembler* masm) {
|
| __ bind(&convert);
|
| {
|
| FrameScope scope(masm, StackFrame::MANUAL);
|
| - ToStringStub stub(masm->isolate());
|
| __ SmiTag(ebx);
|
| __ EnterBuiltinFrame(esi, edi, ebx);
|
| __ Push(edx);
|
| - __ CallStub(&stub);
|
| + __ Call(masm->isolate()->builtins()->ToString(), RelocInfo::CODE_TARGET);
|
| __ Pop(edx);
|
| __ LeaveBuiltinFrame(esi, edi, ebx);
|
| __ SmiUntag(ebx);
|
|
|