Upgrade V8 to 3.6.6.8
This commit is contained in:
parent
4b0241d589
commit
17a82e72f4
7
deps/v8/src/runtime.cc
vendored
7
deps/v8/src/runtime.cc
vendored
@ -6841,7 +6841,12 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_SparseJoinWithSeparator) {
|
||||
// Find total length of join result.
|
||||
int string_length = 0;
|
||||
bool is_ascii = separator->IsAsciiRepresentation();
|
||||
int max_string_length = SeqAsciiString::kMaxLength;
|
||||
int max_string_length;
|
||||
if (is_ascii) {
|
||||
max_string_length = SeqAsciiString::kMaxLength;
|
||||
} else {
|
||||
max_string_length = SeqTwoByteString::kMaxLength;
|
||||
}
|
||||
bool overflow = false;
|
||||
CONVERT_NUMBER_CHECKED(int, elements_length,
|
||||
Int32, elements_array->length());
|
||||
|
2
deps/v8/src/version.cc
vendored
2
deps/v8/src/version.cc
vendored
@ -35,7 +35,7 @@
|
||||
#define MAJOR_VERSION 3
|
||||
#define MINOR_VERSION 6
|
||||
#define BUILD_NUMBER 6
|
||||
#define PATCH_LEVEL 7
|
||||
#define PATCH_LEVEL 8
|
||||
// Use 1 for candidates and 0 otherwise.
|
||||
// (Boolean macro values are not supported by all preprocessors.)
|
||||
#define IS_CANDIDATE_VERSION 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user