| Index: src/ic/x64/handler-compiler-x64.cc
|
| diff --git a/src/ic/x64/handler-compiler-x64.cc b/src/ic/x64/handler-compiler-x64.cc
|
| index 23882dcb5cb8e743828a4813eb8e201e00b6484a..b6add9d2bc1469ec421706c39ffe7bf7b2dcf08f 100644
|
| --- a/src/ic/x64/handler-compiler-x64.cc
|
| +++ b/src/ic/x64/handler-compiler-x64.cc
|
| @@ -209,7 +209,8 @@ void PropertyHandlerCompiler::GenerateCheckPropertyCell(
|
| Factory* factory = masm->isolate()->factory();
|
| Handle<WeakCell> weak_cell = factory->NewWeakCell(cell);
|
| __ LoadWeakValue(scratch, weak_cell, miss);
|
| - __ Cmp(FieldOperand(scratch, Cell::kValueOffset), factory->the_hole_value());
|
| + __ Cmp(FieldOperand(scratch, PropertyCell::kValueOffset),
|
| + factory->the_hole_value());
|
| __ j(not_equal, miss);
|
| }
|
|
|
|
|