| Index: src/disassembler.cc
|
| diff --git a/src/disassembler.cc b/src/disassembler.cc
|
| index 07f124514093e6faca0e8b7270545ae99503ed98..12aa470780e643e6cc7bb85849b755a88c5ecb90 100644
|
| --- a/src/disassembler.cc
|
| +++ b/src/disassembler.cc
|
| @@ -201,10 +201,10 @@ static int DecodeIt(Isolate* isolate, std::ostream* os,
|
| Code* code = Code::GetCodeFromTargetAddress(relocinfo.target_address());
|
| Code::Kind kind = code->kind();
|
| if (code->is_inline_cache_stub()) {
|
| - if (kind == Code::LOAD_IC &&
|
| + if (kind == Code::LOAD_GLOBAL_IC &&
|
| LoadICState::GetTypeofMode(code->extra_ic_state()) ==
|
| - NOT_INSIDE_TYPEOF) {
|
| - out.AddFormatted(" contextual,");
|
| + INSIDE_TYPEOF) {
|
| + out.AddFormatted(" inside typeof,");
|
| }
|
| out.AddFormatted(" %s", Code::Kind2String(kind));
|
| if (!IC::ICUseVector(kind)) {
|
|
|