Revision: 22640
Author:   machenb...@chromium.org
Date:     Mon Jul 28 12:25:10 2014 UTC
Log:      Version 3.28.43.1 (merged r22638)

Use return value of GetPropertyAttributes to make compiler happy.

TBR=ish...@chromium.org
BUG=

Review URL: https://codereview.chromium.org/421913006
http://code.google.com/p/v8/source/detail?r=22640

Modified:
 /trunk/src/objects.cc
 /trunk/src/runtime.cc
 /trunk/src/version.cc

=======================================
--- /trunk/src/objects.cc       Mon Jul 28 00:04:53 2014 UTC
+++ /trunk/src/objects.cc       Mon Jul 28 12:25:10 2014 UTC
@@ -4093,7 +4093,8 @@
   ASSERT(!object->IsJSProxy());
   ASSERT(!name->AsArrayIndex(&index));
   LookupIterator it(object, name, LookupIterator::CHECK_OWN_REAL);
-  GetPropertyAttributes(&it);
+  Maybe<PropertyAttributes> maybe = GetPropertyAttributes(&it);
+  ASSERT(maybe.has_value);
   ASSERT(!it.IsFound());
   ASSERT(object->map()->is_extensible());
 #endif
=======================================
--- /trunk/src/runtime.cc       Mon Jul 28 00:04:53 2014 UTC
+++ /trunk/src/runtime.cc       Mon Jul 28 12:25:10 2014 UTC
@@ -5251,7 +5251,8 @@
   uint32_t index = 0;
   ASSERT(!key->ToArrayIndex(&index));
   LookupIterator it(object, key, LookupIterator::CHECK_OWN_REAL);
-  JSReceiver::GetPropertyAttributes(&it);
+  Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it);
+  ASSERT(maybe.has_value);
   RUNTIME_ASSERT(!it.IsFound());
 #endif

@@ -5282,7 +5283,8 @@
   if (key->IsName()) {
     LookupIterator it(object, Handle<Name>::cast(key),
                       LookupIterator::CHECK_OWN_REAL);
-    JSReceiver::GetPropertyAttributes(&it);
+ Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it);
+    ASSERT(maybe.has_value);
     duplicate = it.IsFound();
   } else {
     uint32_t index = 0;
=======================================
--- /trunk/src/version.cc       Mon Jul 28 00:04:53 2014 UTC
+++ /trunk/src/version.cc       Mon Jul 28 12:25:10 2014 UTC
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     28
 #define BUILD_NUMBER      43
-#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
v8-dev@googlegroups.com
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 v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to