| Index: src/compiler/frame-states.cc | 
| diff --git a/src/compiler/frame-states.cc b/src/compiler/frame-states.cc | 
| index e5e35ab0a953d64f7304df01676e3c1ac35ccd3a..80876f6b2a9233f103645a69c2976ffeb8126b08 100644 | 
| --- a/src/compiler/frame-states.cc | 
| +++ b/src/compiler/frame-states.cc | 
| @@ -45,8 +45,13 @@ size_t hash_value(FrameStateCallInfo const& info) { | 
|  | 
|  | 
| std::ostream& operator<<(std::ostream& os, FrameStateCallInfo const& info) { | 
| -  return os << info.type() << ", " << info.bailout_id() << ", " | 
| -            << info.state_combine(); | 
| +  os << info.type() << ", " << info.bailout_id() << ", " | 
| +     << info.state_combine(); | 
| +  Handle<SharedFunctionInfo> shared_info; | 
| +  if (info.shared_info().ToHandle(&shared_info)) { | 
| +    os << ", " << Brief(*shared_info); | 
| +  } | 
| +  return os; | 
| } | 
|  | 
| }  // namespace compiler | 
|  |