| Index: src/x64/lithium-x64.cc
 | 
| diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc
 | 
| index 642e951ccde7e49b1fb9ba880c5845f4cfa9a5b3..4392bb9f6a7a2222e7a0e86d598352dc5b34c397 100644
 | 
| --- a/src/x64/lithium-x64.cc
 | 
| +++ b/src/x64/lithium-x64.cc
 | 
| @@ -527,8 +527,8 @@ void LChunk::AddGapMove(int index, LOperand* from, LOperand* to) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -Handle<Object> LChunk::LookupLiteral(LConstantOperand* operand) const {
 | 
| -  return HConstant::cast(graph_->LookupValue(operand->index()))->handle();
 | 
| +HConstant* LChunk::LookupConstant(LConstantOperand* operand) const {
 | 
| +  return HConstant::cast(graph_->LookupValue(operand->index()));
 | 
|  }
 | 
|  
 | 
|  
 | 
| 
 |