| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index d3593b6edce9003f38fbceee97d72c503bb47368..ad2b7a2747f0d4dc3e9741d119296e8cbbf32c22 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -4895,7 +4895,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.
|
|
|