Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 3f229a85bf308af1ba5cdb9d6b1d8847c49f0968..6ef99b09e7f9469d63750a404c74b26f9db8da8c 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -4881,7 +4881,8 @@ class Code: public HeapObject { |
// TODO(danno): This is a bit of a hack right now since there are still |
// clients of this API that pass "extra" values in for argc. These clients |
// should be retrofitted to used ExtendedExtraICState. |
- return kind == COMPARE_NIL_IC || kind == TO_BOOLEAN_IC; |
+ return kind == COMPARE_NIL_IC || kind == TO_BOOLEAN_IC || |
+ kind == BINARY_OP_IC; |
} |
inline StubType type(); // Only valid for monomorphic IC stubs. |