| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 68eda124c67c77f67f26a4abcaac5f5712239f80..3322a036dac4c6564b941de344780c55ed20a452 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -4566,7 +4566,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 == UNARY_OP_IC;
|
| }
|
|
|
| inline StubType type(); // Only valid for monomorphic IC stubs.
|
|
|