Reviewers: Toon Verwaest,

Description:
Fix out of date assert after PropertyCell enterbung

[email protected]
BUG=

Please review this at https://codereview.chromium.org/1028393002/

Base URL: https://chromium.googlesource.com/v8/v8.git@master

Affected files (+1, -1 lines):
  M src/objects.h


Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 5961dc060f82ac581ccda19073d2375e2dfe9b34..d17eb352ebab2564393ae78cb977c6577383046b 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -9699,7 +9699,7 @@ class Cell: public HeapObject {

   static inline Cell* FromValueAddress(Address value) {
     Object* result = FromAddress(value - kValueOffset);
-    DCHECK(result->IsCell() || result->IsPropertyCell());
+    DCHECK(result->IsCell());
     return static_cast<Cell*>(result);
   }



--
--
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.

Reply via email to