| Index: src/x87/code-stubs-x87.cc | 
| diff --git a/src/x87/code-stubs-x87.cc b/src/x87/code-stubs-x87.cc | 
| index 498bd58d5c778c32ddeac744ef752be2ea52c909..68111a7eef2e6c3d6f5f76599991171fbf0ca432 100644 | 
| --- a/src/x87/code-stubs-x87.cc | 
| +++ b/src/x87/code-stubs-x87.cc | 
| @@ -1907,40 +1907,6 @@ void StringHelper::GenerateCopyCharacters(MacroAssembler* masm, | 
| __ bind(&done); | 
| } | 
|  | 
| -void ToStringStub::Generate(MacroAssembler* masm) { | 
| -  // The ToString stub takes one argument in eax. | 
| -  Label is_number; | 
| -  __ JumpIfSmi(eax, &is_number, Label::kNear); | 
| - | 
| -  Label not_string; | 
| -  __ CmpObjectType(eax, FIRST_NONSTRING_TYPE, edi); | 
| -  // eax: receiver | 
| -  // edi: receiver map | 
| -  __ j(above_equal, ¬_string, Label::kNear); | 
| -  __ Ret(); | 
| -  __ bind(¬_string); | 
| - | 
| -  Label not_heap_number; | 
| -  __ CompareMap(eax, masm->isolate()->factory()->heap_number_map()); | 
| -  __ j(not_equal, ¬_heap_number, Label::kNear); | 
| -  __ bind(&is_number); | 
| -  NumberToStringStub stub(isolate()); | 
| -  __ TailCallStub(&stub); | 
| -  __ bind(¬_heap_number); | 
| - | 
| -  Label not_oddball; | 
| -  __ CmpInstanceType(edi, ODDBALL_TYPE); | 
| -  __ j(not_equal, ¬_oddball, Label::kNear); | 
| -  __ mov(eax, FieldOperand(eax, Oddball::kToStringOffset)); | 
| -  __ Ret(); | 
| -  __ bind(¬_oddball); | 
| - | 
| -  __ pop(ecx);   // Pop return address. | 
| -  __ push(eax);  // Push argument. | 
| -  __ push(ecx);  // Push return address. | 
| -  __ TailCallRuntime(Runtime::kToString); | 
| -} | 
| - | 
|  | 
| void StringHelper::GenerateFlatOneByteStringEquals(MacroAssembler* masm, | 
| Register left, | 
|  |