Revision: 9061 Author: [email protected] Date: Mon Aug 29 10:44:42 2011 Log: Merge revision 9060 to trunk (removal of bogus assert) Review URL: http://codereview.chromium.org/7796001 http://code.google.com/p/v8/source/detail?r=9061
Modified: /trunk/src/jsregexp.cc /trunk/src/version.cc ======================================= --- /trunk/src/jsregexp.cc Mon Aug 29 03:41:00 2011 +++ /trunk/src/jsregexp.cc Mon Aug 29 10:44:42 2011 @@ -226,7 +226,6 @@ AssertNoAllocation no_heap_allocation; // ensure vectors stay valid String* needle = String::cast(re->DataAt(JSRegExp::kAtomPatternIndex)); - ASSERT(StringShape(needle).IsSequential()); int needle_len = needle->length(); ASSERT(needle->IsFlat()); ======================================= --- /trunk/src/version.cc Mon Aug 29 03:41:00 2011 +++ /trunk/src/version.cc Mon Aug 29 10:44:42 2011 @@ -35,7 +35,7 @@ #define MAJOR_VERSION 3 #define MINOR_VERSION 5 #define BUILD_NUMBER 9 -#define PATCH_LEVEL 0 +#define PATCH_LEVEL 1 // Use 1 for candidates and 0 otherwise. // (Boolean macro values are not supported by all preprocessors.) #define IS_CANDIDATE_VERSION 0 -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
