Index: src/mips/code-stubs-mips.cc |
diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc |
index 8a9ee3d70cb7cca4fb4dae9c57efbee6b37d5224..dd608e63254052d168285b42be6b3d7c71eed095 100644 |
--- a/src/mips/code-stubs-mips.cc |
+++ b/src/mips/code-stubs-mips.cc |
@@ -2087,7 +2087,7 @@ void RegExpExecStub::Generate(MacroAssembler* masm) { |
// time or if regexp entry in generated code is turned off runtime switch or |
// at compilation. |
#ifdef V8_INTERPRETED_REGEXP |
- __ TailCallRuntime(Runtime::kRegExpExecRT, 4, 1); |
+ __ TailCallRuntime(Runtime::kRegExpExec, 4, 1); |
#else // V8_INTERPRETED_REGEXP |
// Stack frame on entry. |
@@ -2469,7 +2469,7 @@ void RegExpExecStub::Generate(MacroAssembler* masm) { |
// Do the runtime call to execute the regexp. |
__ bind(&runtime); |
- __ TailCallRuntime(Runtime::kRegExpExecRT, 4, 1); |
+ __ TailCallRuntime(Runtime::kRegExpExec, 4, 1); |
// Deferred code for string handling. |
// (6) Not a long external string? If yes, go to (8). |