Index: src/mips/code-stubs-mips.cc |
diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc |
index 70df019caeaace2090aaeb898f1c75861ccf94eb..65b5ee5dfc81326ba9b18565681b4c5cc7eb88ec 100644 |
--- a/src/mips/code-stubs-mips.cc |
+++ b/src/mips/code-stubs-mips.cc |
@@ -1683,7 +1683,7 @@ void ArgumentsAccessStub::GenerateReadElement(MacroAssembler* masm) { |
// by calling the runtime system. |
__ bind(&slow); |
__ push(a1); |
- __ TailCallRuntime(Runtime::kGetArgumentsProperty, 1, 1); |
+ __ TailCallRuntime(Runtime::kArguments, 1, 1); |
} |
@@ -3456,7 +3456,7 @@ void SubStringStub::Generate(MacroAssembler* masm) { |
// Just jump to runtime to create the sub string. |
__ bind(&runtime); |
- __ TailCallRuntime(Runtime::kSubStringRT, 3, 1); |
+ __ TailCallRuntime(Runtime::kSubString, 3, 1); |
__ bind(&single_char); |
// v0: original string |
@@ -3650,7 +3650,7 @@ void StringCompareStub::Generate(MacroAssembler* masm) { |
StringHelper::GenerateCompareFlatOneByteStrings(masm, a1, a0, a2, a3, t0, t1); |
__ bind(&runtime); |
- __ TailCallRuntime(Runtime::kStringCompareRT, 2, 1); |
+ __ TailCallRuntime(Runtime::kStringCompare, 2, 1); |
} |
@@ -3960,7 +3960,7 @@ void CompareICStub::GenerateStrings(MacroAssembler* masm) { |
if (equality) { |
__ TailCallRuntime(Runtime::kStringEquals, 2, 1); |
} else { |
- __ TailCallRuntime(Runtime::kStringCompareRT, 2, 1); |
+ __ TailCallRuntime(Runtime::kStringCompare, 2, 1); |
} |
__ bind(&miss); |