| Index: src/hydrogen-instructions.cc
 | 
| diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
 | 
| index 095c95d0013873c1eb77eb9e59ef1fcd20c4fecf..dbbc3ff034e6ac90d446fba1bda75284925ddaa1 100644
 | 
| --- a/src/hydrogen-instructions.cc
 | 
| +++ b/src/hydrogen-instructions.cc
 | 
| @@ -871,7 +871,6 @@ bool HInstruction::CanDeoptimize() {
 | 
|      case HValue::kInvokeFunction:
 | 
|      case HValue::kLoadContextSlot:
 | 
|      case HValue::kLoadFunctionPrototype:
 | 
| -    case HValue::kLoadGlobalCell:
 | 
|      case HValue::kLoadKeyed:
 | 
|      case HValue::kLoadKeyedGeneric:
 | 
|      case HValue::kMathFloorOfDiv:
 | 
| @@ -887,7 +886,6 @@ bool HInstruction::CanDeoptimize() {
 | 
|      case HValue::kSimulate:
 | 
|      case HValue::kStackCheck:
 | 
|      case HValue::kStoreContextSlot:
 | 
| -    case HValue::kStoreGlobalCell:
 | 
|      case HValue::kStoreKeyedGeneric:
 | 
|      case HValue::kStringAdd:
 | 
|      case HValue::kStringCompareAndBranch:
 | 
| @@ -3624,14 +3622,6 @@ std::ostream& HTransitionElementsKind::PrintDataTo(
 | 
|  }
 | 
|  
 | 
|  
 | 
| -std::ostream& HLoadGlobalCell::PrintDataTo(std::ostream& os) const {  // NOLINT
 | 
| -  os << "[" << *cell().handle() << "]";
 | 
| -  if (details_.IsConfigurable()) os << " (configurable)";
 | 
| -  if (details_.IsReadOnly()) os << " (read-only)";
 | 
| -  return os;
 | 
| -}
 | 
| -
 | 
| -
 | 
|  std::ostream& HLoadGlobalGeneric::PrintDataTo(
 | 
|      std::ostream& os) const {  // NOLINT
 | 
|    return os << name()->ToCString().get() << " ";
 | 
| @@ -3645,14 +3635,6 @@ std::ostream& HInnerAllocatedObject::PrintDataTo(
 | 
|  }
 | 
|  
 | 
|  
 | 
| -std::ostream& HStoreGlobalCell::PrintDataTo(std::ostream& os) const {  // NOLINT
 | 
| -  os << "[" << *cell().handle() << "] = " << NameOf(value());
 | 
| -  if (details_.IsConfigurable()) os << " (configurable)";
 | 
| -  if (details_.IsReadOnly()) os << " (read-only)";
 | 
| -  return os;
 | 
| -}
 | 
| -
 | 
| -
 | 
|  std::ostream& HLoadContextSlot::PrintDataTo(std::ostream& os) const {  // NOLINT
 | 
|    return os << NameOf(value()) << "[" << slot_index() << "]";
 | 
|  }
 | 
| 
 |