Index: src/hydrogen-instructions.cc |
diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc |
index 72744df8e0a51f811cd0407147d314274b55660a..095c95d0013873c1eb77eb9e59ef1fcd20c4fecf 100644 |
--- a/src/hydrogen-instructions.cc |
+++ b/src/hydrogen-instructions.cc |
@@ -3632,16 +3632,6 @@ std::ostream& HLoadGlobalCell::PrintDataTo(std::ostream& os) const { // NOLINT |
} |
-bool HLoadGlobalCell::RequiresHoleCheck() const { |
- if (!details_.IsConfigurable()) return false; |
- for (HUseIterator it(uses()); !it.Done(); it.Advance()) { |
- HValue* use = it.value(); |
- if (!use->IsChange()) return true; |
- } |
- return false; |
-} |
- |
- |
std::ostream& HLoadGlobalGeneric::PrintDataTo( |
std::ostream& os) const { // NOLINT |
return os << name()->ToCString().get() << " "; |