| Index: src/x64/lithium-x64.cc
 | 
| diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc
 | 
| index 12b952d22643eda8e3b328853da673ef57a78934..c5f7b3b626456c127d6ddd278b021c1cb44f5a06 100644
 | 
| --- a/src/x64/lithium-x64.cc
 | 
| +++ b/src/x64/lithium-x64.cc
 | 
| @@ -1602,8 +1602,9 @@ LInstruction* LChunkBuilder::DoLoadNamedField(HLoadNamedField* instr) {
 | 
|  
 | 
|  
 | 
|  LInstruction* LChunkBuilder::DoLoadNamedGeneric(HLoadNamedGeneric* instr) {
 | 
| -  Abort("Unimplemented: %s", "DoLoadNamedGeneric");
 | 
| -  return NULL;
 | 
| +  LOperand* object = UseFixed(instr->object(), rax);
 | 
| +  LLoadNamedGeneric* result = new LLoadNamedGeneric(object);
 | 
| +  return MarkAsCall(DefineFixed(result, rax), instr);
 | 
|  }
 | 
|  
 | 
|  
 | 
| 
 |