From 140f687b9650aabfc4694375be55f5c62eb10275 Mon Sep 17 00:00:00 2001 From: "christian.plesner.hansen@gmail.com" Date: Wed, 21 Jan 2009 13:16:03 +0000 Subject: [PATCH] Enabled irregexp by default. I have deliberately made this change minimal so it's easier to revert partially or fully. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1117 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/flag-definitions.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/flag-definitions.h b/src/flag-definitions.h index 13efb3f5d9..111119c7f5 100644 --- a/src/flag-definitions.h +++ b/src/flag-definitions.h @@ -200,10 +200,10 @@ DEFINE_bool(preemption, false, "activate a 100ms timer that switches between V8 threads") // Irregexp -DEFINE_bool(irregexp, false, "new regular expression code") +DEFINE_bool(irregexp, true, "new regular expression code") DEFINE_bool(trace_regexps, false, "trace Irregexp execution") -DEFINE_bool(irregexp_native, false, "use native code Irregexp implementation (IA32 only)") -DEFINE_bool(disable_jscre, false, "abort if JSCRE is used. Only useful with --irregexp") +DEFINE_bool(irregexp_native, true, "use native code Irregexp implementation (IA32 only)") +DEFINE_bool(disable_jscre, true, "abort if JSCRE is used. Only useful with --irregexp") // Testing flags test/cctest/test-{flags,api,serialization}.cc DEFINE_bool(testing_bool_flag, true, "testing_bool_flag")