Index: src/x87/code-stubs-x87.cc |
diff --git a/src/x87/code-stubs-x87.cc b/src/x87/code-stubs-x87.cc |
index 1ead5af959920b776d8e0ac5db0b7efdf7711da8..04507cbc141e02f4feaaf478c51d76f61db11c0c 100644 |
--- a/src/x87/code-stubs-x87.cc |
+++ b/src/x87/code-stubs-x87.cc |
@@ -919,7 +919,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. |
@@ -1284,7 +1284,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. |
// (7) Not a long external string? If yes, go to (10). |