Index: src/ast.h |
diff --git a/src/ast.h b/src/ast.h |
index ee019e8f0fa60ee540fd9361029208bea07c27a8..0e419c564dd4a2047925c49774b9b100e1901a2a 100644 |
--- a/src/ast.h |
+++ b/src/ast.h |
@@ -1684,7 +1684,6 @@ class VariableProxy final : public Expression { |
ICSlotCache* cache) override; |
Code::Kind FeedbackICSlotKind(int index) override { return Code::LOAD_IC; } |
FeedbackVectorICSlot VariableFeedbackSlot() { |
- DCHECK(!UsesVariableFeedbackSlot() || !variable_feedback_slot_.IsInvalid()); |
return variable_feedback_slot_; |
} |
@@ -1792,7 +1791,6 @@ class Property final : public Expression { |
} |
FeedbackVectorICSlot PropertyFeedbackSlot() const { |
- DCHECK(!property_feedback_slot_.IsInvalid()); |
return property_feedback_slot_; |
} |