Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index a5ef1192e96160c2f2aa3ab4b41e7d53fdafb26b..eb9e7dd00a6a79d97563d219db5a70d7afbeb7d8 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -2311,7 +2311,15 @@ LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) { |
LOperand* temp = (!is_in_object || needs_write_barrier || |
needs_write_barrier_for_map) ? TempRegister() : NULL; |
- return new(zone()) LStoreNamedField(obj, val, temp); |
+ LInstruction* result = new(zone()) LStoreNamedField(obj, val, temp); |
+ if (!instr->access().IsExternalMemory() && |
+ instr->field_representation().IsHeapObject() && |
+ (val->IsConstantOperand() |
+ ? HConstant::cast(instr->value())->HasSmiValue() |
+ : !instr->value()->type().IsHeapObject())) { |
+ result = AssignEnvironment(result); |
+ } |
+ return result; |
} |