| Index: src/hydrogen-instructions.cc
 | 
| diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
 | 
| index 974b65b715fb6ec86c0026d201a682d481ace8af..0f14c6008bb7e18ca84d562b393bc3f13899586d 100644
 | 
| --- a/src/hydrogen-instructions.cc
 | 
| +++ b/src/hydrogen-instructions.cc
 | 
| @@ -837,7 +837,6 @@ bool HInstruction::CanDeoptimize() {
 | 
|      case HValue::kStoreNamedGeneric:
 | 
|      case HValue::kStringCharCodeAt:
 | 
|      case HValue::kStringCharFromCode:
 | 
| -    case HValue::kTailCallThroughMegamorphicCache:
 | 
|      case HValue::kThisFunction:
 | 
|      case HValue::kTypeofIsAndBranch:
 | 
|      case HValue::kUnknownOSRValue:
 | 
| @@ -1717,22 +1716,6 @@ std::ostream& HCallStub::PrintDataTo(std::ostream& os) const {  // NOLINT
 | 
|  }
 | 
|  
 | 
|  
 | 
| -Code::Flags HTailCallThroughMegamorphicCache::flags() const {
 | 
| -  Code::Flags code_flags = Code::RemoveTypeAndHolderFromFlags(
 | 
| -      Code::ComputeHandlerFlags(Code::LOAD_IC));
 | 
| -  return code_flags;
 | 
| -}
 | 
| -
 | 
| -
 | 
| -std::ostream& HTailCallThroughMegamorphicCache::PrintDataTo(
 | 
| -    std::ostream& os) const {  // NOLINT
 | 
| -  for (int i = 0; i < OperandCount(); i++) {
 | 
| -    os << NameOf(OperandAt(i)) << " ";
 | 
| -  }
 | 
| -  return os << "flags: " << flags();
 | 
| -}
 | 
| -
 | 
| -
 | 
|  std::ostream& HUnknownOSRValue::PrintDataTo(std::ostream& os) const {  // NOLINT
 | 
|    const char* type = "expression";
 | 
|    if (environment_->is_local_index(index_)) type = "local";
 | 
| 
 |