aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorulan@chromium.org <ulan@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>2014-06-30 07:20:01 +0000
committerulan@chromium.org <ulan@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>2014-06-30 07:20:01 +0000
commitd6a645f11c0b869f97961ce290c1d44bd4488e24 (patch)
treec95565cc38d16b0f2ae3c7ec47235f0d435d7121
parent84b86472bb519c85690c1cc7996b02ab618c0d16 (diff)
downloadv8-d6a645f11c0b869f97961ce290c1d44bd4488e24.tar.gz
Version 3.27.34.3 (merged r22037)
Keep CodeRange::current_allocation_block_index_ in range after r21869. BUG=305878,388328 LOG=N R=yangguo@chromium.org Review URL: https://codereview.chromium.org/332983006 git-svn-id: https://v8.googlecode.com/svn/branches/3.27@22075 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
-rw-r--r--src/spaces.cc2
-rw-r--r--src/version.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/spaces.cc b/src/spaces.cc
index 22233d9b3..1ffc31411 100644
--- a/src/spaces.cc
+++ b/src/spaces.cc
@@ -193,7 +193,7 @@ bool CodeRange::GetNextAllocationBlock(size_t requested) {
return true; // Found a large enough allocation block.
}
}
-
+ current_allocation_block_index_ = 0;
// Code range is full or too fragmented.
return false;
}
diff --git a/src/version.cc b/src/version.cc
index a17db9c8d..cc52a0df7 100644
--- a/src/version.cc
+++ b/src/version.cc
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 27
#define BUILD_NUMBER 34
-#define PATCH_LEVEL 2
+#define PATCH_LEVEL 3
// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
#define IS_CANDIDATE_VERSION 0