Commit 36d7aa68 authored by erikcorry's avatar erikcorry Committed by Commit bot

Fix out of date assert after PropertyCell enterbung

R=verwaest@chromium.org
BUG=

Review URL: https://codereview.chromium.org/1028393002

Cr-Commit-Position: refs/heads/master@{#27400}
parent c46a9372
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment