Index: src/hydrogen-instructions.cc |
diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc |
index eea6b68e23dd1e2ee86405552c743932db76245d..9f5b49acc1a1a0812a7165eeea32e23cda0134b8 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"; |