Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 7d57b731a4b7f2df7df481f6b8a76e4560e88f7c..4d8a45bb2d58d3066219dfc01d80b03ea64af9c9 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -4926,7 +4926,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. |