Browse Source

Upgrade V8 to 3.6.6.15

v0.7.4-release
Ryan Dahl 13 years ago
parent
commit
6029127cea
  1. 2
      deps/v8/src/objects.h
  2. 2
      deps/v8/src/version.cc

2
deps/v8/src/objects.h

@ -2172,7 +2172,7 @@ class FixedArray: public FixedArrayBase {
// Maximal allowed size, in bytes, of a single FixedArray.
// Prevents overflowing size computations, as well as extreme memory
// consumption.
static const int kMaxSize = 512 * MB;
static const int kMaxSize = 128 * MB * kPointerSize;
// Maximally allowed length of a FixedArray.
static const int kMaxLength = (kMaxSize - kHeaderSize) / kPointerSize;

2
deps/v8/src/version.cc

@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 6
#define BUILD_NUMBER 6
#define PATCH_LEVEL 14
#define PATCH_LEVEL 15
// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
#define IS_CANDIDATE_VERSION 0

Loading…
Cancel
Save