Index: src/arm/code-stubs-arm.cc |
diff --git a/src/arm/code-stubs-arm.cc b/src/arm/code-stubs-arm.cc |
index d0d09934ef10851bfd774343fe94649217f88fdd..b10fcadc3732da770fcc42b8e1c50143d7ac525f 100644 |
--- a/src/arm/code-stubs-arm.cc |
+++ b/src/arm/code-stubs-arm.cc |
@@ -1597,7 +1597,7 @@ void ArgumentsAccessStub::GenerateReadElement(MacroAssembler* masm) { |
// by calling the runtime system. |
__ bind(&slow); |
__ push(r1); |
- __ TailCallRuntime(Runtime::kGetArgumentsProperty, 1, 1); |
+ __ TailCallRuntime(Runtime::kArguments, 1, 1); |
} |
@@ -3312,7 +3312,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); |
// r0: original string |
@@ -3499,7 +3499,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::kStringCompareRT, 2, 1); |
+ __ TailCallRuntime(Runtime::kStringCompare, 2, 1); |
} |
@@ -3780,7 +3780,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); |