| Index: src/objects.cc | 
| diff --git a/src/objects.cc b/src/objects.cc | 
| index 96b42286e88f03c1772e204d04497c22f38456ab..e2b1b753328672fb9d164d975a331717de20d3b6 100644 | 
| --- a/src/objects.cc | 
| +++ b/src/objects.cc | 
| @@ -8379,6 +8379,10 @@ void Code::Disassemble(const char* name, FILE* out) { | 
| CompareIC::State state = CompareIC::ComputeState(this); | 
| PrintF(out, "compare_state = %s\n", CompareIC::GetStateName(state)); | 
| } | 
| +    if (is_compare_ic_stub() && major_key() == CodeStub::CompareIC) { | 
| +      Token::Value op = CompareIC::ComputeOperation(this); | 
| +      PrintF(out, "compare_operation = %s\n", Token::Name(op)); | 
| +    } | 
| } | 
| if ((name != NULL) && (name[0] != '\0')) { | 
| PrintF(out, "name = %s\n", name); | 
|  |