Index: src/hydrogen-instructions.cc |
diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc |
index 5b5386b4e8418d5bb2bb1ab82d91cab244467bda..dbfe555c428c2fbb4c9f9748f79749fe4a98b696 100644 |
--- a/src/hydrogen-instructions.cc |
+++ b/src/hydrogen-instructions.cc |
@@ -3584,14 +3584,14 @@ OStream& HTransitionElementsKind::PrintDataTo(OStream& os) const { // NOLINT |
OStream& HLoadGlobalCell::PrintDataTo(OStream& os) const { // NOLINT |
os << "[" << *cell().handle() << "]"; |
- if (!details_.IsDontDelete()) os << " (deleteable)"; |
+ if (details_.IsConfigurable()) os << " (configurable)"; |
if (details_.IsReadOnly()) os << " (read-only)"; |
return os; |
} |
bool HLoadGlobalCell::RequiresHoleCheck() const { |
- if (details_.IsDontDelete() && !details_.IsReadOnly()) return false; |
+ if (!details_.IsConfigurable()) return false; |
for (HUseIterator it(uses()); !it.Done(); it.Advance()) { |
HValue* use = it.value(); |
if (!use->IsChange()) return true; |
@@ -3613,7 +3613,7 @@ OStream& HInnerAllocatedObject::PrintDataTo(OStream& os) const { // NOLINT |
OStream& HStoreGlobalCell::PrintDataTo(OStream& os) const { // NOLINT |
os << "[" << *cell().handle() << "] = " << NameOf(value()); |
- if (!details_.IsDontDelete()) os << " (deleteable)"; |
+ if (details_.IsConfigurable()) os << " (configurable)"; |
if (details_.IsReadOnly()) os << " (read-only)"; |
return os; |
} |