Index: src/ia32/lithium-codegen-ia32.cc |
diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc |
index 92b1250458acda624dbdf0facddff1728159bc28..dc0ffb689def2a56edd77b5bd0c7607363509340 100644 |
--- a/src/ia32/lithium-codegen-ia32.cc |
+++ b/src/ia32/lithium-codegen-ia32.cc |
@@ -3151,7 +3151,7 @@ void LCodeGen::DoReturn(LReturn* instr) { |
void LCodeGen::DoLoadGlobalCell(LLoadGlobalCell* instr) { |
Register result = ToRegister(instr->result()); |
- __ mov(result, Operand::ForCell(instr->hydrogen()->cell())); |
+ __ mov(result, Operand::ForCell(instr->hydrogen()->cell().handle())); |
if (instr->hydrogen()->RequiresHoleCheck()) { |
__ cmp(result, factory()->the_hole_value()); |
DeoptimizeIf(equal, instr->environment()); |
@@ -3174,7 +3174,7 @@ void LCodeGen::DoLoadGlobalGeneric(LLoadGlobalGeneric* instr) { |
void LCodeGen::DoStoreGlobalCell(LStoreGlobalCell* instr) { |
Register value = ToRegister(instr->value()); |
- Handle<PropertyCell> cell_handle = instr->hydrogen()->cell(); |
+ Handle<PropertyCell> cell_handle = instr->hydrogen()->cell().handle(); |
// If the cell we are storing to contains the hole it could have |
// been deleted from the property dictionary. In that case, we need |