| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index aa1f5c82fbf677506b82f00249ad7b70b3fbd3b5..3cf2b5f2f136fb2c2383ef3597c578b9126292f2 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -4878,7 +4878,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.
|
|
|