| Index: src/x64/lithium-x64.cc
 | 
| diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc
 | 
| index 9d99e91d721b54832f90315072d3f8cd8033ba6b..0dba33dc91ea83959c8859ebe3d3a3b5a09adae8 100644
 | 
| --- a/src/x64/lithium-x64.cc
 | 
| +++ b/src/x64/lithium-x64.cc
 | 
| @@ -2589,9 +2589,7 @@ LInstruction* LChunkBuilder::DoCheckMapValue(HCheckMapValue* instr) {
 | 
|  LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) {
 | 
|    LOperand* object = UseRegister(instr->object());
 | 
|    LOperand* index = UseTempRegister(instr->index());
 | 
| -  LLoadFieldByIndex* load = new(zone()) LLoadFieldByIndex(object, index);
 | 
| -  LInstruction* result = DefineSameAsFirst(load);
 | 
| -  return AssignPointerMap(result);
 | 
| +  return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index));
 | 
|  }
 | 
|  
 | 
|  
 | 
| 
 |