| Index: src/x87/code-stubs-x87.cc
|
| diff --git a/src/x87/code-stubs-x87.cc b/src/x87/code-stubs-x87.cc
|
| index bfd2b2df72cb3cab4fa6a798ca9bf5825da801fa..1ead5af959920b776d8e0ac5db0b7efdf7711da8 100644
|
| --- a/src/x87/code-stubs-x87.cc
|
| +++ b/src/x87/code-stubs-x87.cc
|
| @@ -2974,7 +2974,7 @@ void SubStringStub::Generate(MacroAssembler* masm) {
|
|
|
| // Just jump to runtime to create the sub string.
|
| __ bind(&runtime);
|
| - __ TailCallRuntime(Runtime::kSubString, 3, 1);
|
| + __ TailCallRuntime(Runtime::kSubStringRT, 3, 1);
|
|
|
| __ bind(&single_char);
|
| // eax: string
|
| @@ -3197,7 +3197,7 @@ void StringCompareStub::Generate(MacroAssembler* masm) {
|
| // Call the runtime; it returns -1 (less), 0 (equal), or 1 (greater)
|
| // tagged as a small integer.
|
| __ bind(&runtime);
|
| - __ TailCallRuntime(Runtime::kStringCompare, 2, 1);
|
| + __ TailCallRuntime(Runtime::kStringCompareRT, 2, 1);
|
| }
|
|
|
|
|
| @@ -3481,7 +3481,7 @@ void CompareICStub::GenerateStrings(MacroAssembler* masm) {
|
| if (equality) {
|
| __ TailCallRuntime(Runtime::kStringEquals, 2, 1);
|
| } else {
|
| - __ TailCallRuntime(Runtime::kStringCompare, 2, 1);
|
| + __ TailCallRuntime(Runtime::kStringCompareRT, 2, 1);
|
| }
|
|
|
| __ bind(&miss);
|
|
|