Index: src/objects-inl.h |
diff --git a/src/objects-inl.h b/src/objects-inl.h |
index c96bf56f9fbde5228973e6d00ba8bb0431365e49..f0d2ea24b5547407863209b5eec3b6b97ddbc824 100644 |
--- a/src/objects-inl.h |
+++ b/src/objects-inl.h |
@@ -2786,11 +2786,10 @@ Code::Flags Code::ComputeFlags(Kind kind, |
PropertyType type, |
int argc, |
InlineCacheHolderFlag holder) { |
- // Extra IC state is only allowed for monomorphic call IC stubs |
- // or for store IC stubs. |
+ // Extra IC state is only allowed for call IC stubs or for store IC |
+ // stubs. |
ASSERT(extra_ic_state == kNoExtraICState || |
- (kind == CALL_IC && (ic_state == MONOMORPHIC || |
- ic_state == MONOMORPHIC_PROTOTYPE_FAILURE)) || |
+ (kind == CALL_IC) || |
(kind == STORE_IC) || |
(kind == KEYED_STORE_IC) || |
(kind == KEYED_EXTERNAL_ARRAY_STORE_IC)); |