Index: src/arm/codegen-arm.cc |
=================================================================== |
--- src/arm/codegen-arm.cc (revision 4643) |
+++ src/arm/codegen-arm.cc (working copy) |
@@ -8562,9 +8562,9 @@ |
// Just jump directly to runtime if native RegExp is not selected at compile |
// time or if regexp entry in generated code is turned off runtime switch or |
// at compilation. |
-#ifndef V8_NATIVE_REGEXP |
+#ifdef V8_INTERPRETED_REGEXP |
__ TailCallRuntime(Runtime::kRegExpExec, 4, 1); |
-#else // V8_NATIVE_REGEXP |
+#else // V8_INTERPRETED_REGEXP |
if (!FLAG_regexp_entry_native) { |
__ TailCallRuntime(Runtime::kRegExpExec, 4, 1); |
return; |
@@ -8897,7 +8897,7 @@ |
// Do the runtime call to execute the regexp. |
__ bind(&runtime); |
__ TailCallRuntime(Runtime::kRegExpExec, 4, 1); |
-#endif // V8_NATIVE_REGEXP |
+#endif // V8_INTERPRETED_REGEXP |
} |