| Index: src/disassembler.cc
|
| diff --git a/src/disassembler.cc b/src/disassembler.cc
|
| index f1c28e8199f52d835cb619092f9214c6417096f3..3be634407d17e86ea97f67b78c235d7f91aac936 100644
|
| --- a/src/disassembler.cc
|
| +++ b/src/disassembler.cc
|
| @@ -215,8 +215,9 @@ static int DecodeIt(Isolate* isolate,
|
| Code::Kind kind = code->kind();
|
| if (code->is_inline_cache_stub()) {
|
| if (kind == Code::LOAD_IC &&
|
| - LoadIC::GetContextualMode(code->extra_ic_state()) == CONTEXTUAL) {
|
| - out.AddFormatted(" contextual,");
|
| + LoadIC::GetTypeofState(
|
| + code->extra_ic_state()) == NOT_INSIDE_TYPEOF) {
|
| + out.AddFormatted(" not_inside_typeof,");
|
| }
|
| InlineCacheState ic_state = code->ic_state();
|
| out.AddFormatted(" %s, %s", Code::Kind2String(kind),
|
|
|