Index: src/ppc/code-stubs-ppc.cc |
diff --git a/src/ppc/code-stubs-ppc.cc b/src/ppc/code-stubs-ppc.cc |
index 13e0948c38fc6b49f2b1231b3583530d25a21676..353a92d6363854c6ccc7b1864f9bc838c93039c7 100644 |
--- a/src/ppc/code-stubs-ppc.cc |
+++ b/src/ppc/code-stubs-ppc.cc |
@@ -1686,7 +1686,7 @@ void ArgumentsAccessStub::GenerateReadElement(MacroAssembler* masm) { |
// by calling the runtime system. |
__ bind(&slow); |
__ push(r4); |
- __ TailCallRuntime(Runtime::kGetArgumentsProperty, 1, 1); |
+ __ TailCallRuntime(Runtime::kArguments, 1, 1); |
} |
@@ -3481,7 +3481,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); |
// r3: original string |
@@ -3694,7 +3694,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); |
} |
@@ -3998,7 +3998,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); |