Index: src/ia32/code-stubs-ia32.cc |
diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc |
index 8270fa4d7feca29292555c61136830c54041525b..74715d9a83782a45069100aac6bc5a23b0849001 100644 |
--- a/src/ia32/code-stubs-ia32.cc |
+++ b/src/ia32/code-stubs-ia32.cc |
@@ -1238,7 +1238,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. |
@@ -1609,7 +1609,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). |