Index: src/mips/code-stubs-mips.cc |
diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc |
index 91b6f3ce2fce66eee697b9aa2bd0de0877c0faad..8a9ee3d70cb7cca4fb4dae9c57efbee6b37d5224 100644 |
--- a/src/mips/code-stubs-mips.cc |
+++ b/src/mips/code-stubs-mips.cc |
@@ -3410,7 +3410,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); |
// v0: original string |
@@ -3604,7 +3604,7 @@ void StringCompareStub::Generate(MacroAssembler* masm) { |
StringHelper::GenerateCompareFlatOneByteStrings(masm, a1, a0, a2, a3, t0, t1); |
__ bind(&runtime); |
- __ TailCallRuntime(Runtime::kStringCompare, 2, 1); |
+ __ TailCallRuntime(Runtime::kStringCompareRT, 2, 1); |
} |
@@ -3914,7 +3914,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); |