Reviewers: Toon Verwaest,
Message:
Even patches that apply cleanly can break the build :-(
Description:
Fix build on 3.24 branch
[email protected]
Please review this at https://codereview.chromium.org/223043002/
SVN Base: https://v8.googlecode.com/svn/branches/3.24
Affected files (+2, -2 lines):
M src/objects.cc
M src/version.cc
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index
0d45c5a77c1f0a171649079917556b1fd37a49b7..8a1f4134cc6a48d0dcec5a81c72806cc2ccc0f5e
100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -14456,7 +14456,7 @@ MaybeObject*
JSObject::PrepareSlowElementsForSort(uint32_t limit) {
Handle<Object> JSObject::PrepareElementsForSort(Handle<JSObject> object,
uint32_t limit) {
Isolate* isolate = object->GetIsolate();
- if (object->HasSloppyArgumentsElements() ||
+ if (object->HasNonStrictArgumentsElements() ||
object->map()->is_observed()) {
return handle(Smi::FromInt(-1), isolate);
}
Index: src/version.cc
diff --git a/src/version.cc b/src/version.cc
index
a90340bd5165202b19922aa6faeaf34403a294e8..1d30f2db9052f746d3737fc457f44bf8ae2e18c7
100644
--- a/src/version.cc
+++ b/src/version.cc
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 24
#define BUILD_NUMBER 35
-#define PATCH_LEVEL 25
+#define PATCH_LEVEL 26
// 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
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.