| Index: src/compilation-info.cc | 
| diff --git a/src/compilation-info.cc b/src/compilation-info.cc | 
| index 5758b41a6b7a7fd7803420f353543073322810b1..e8d460771370216641e51aaf2ca4978941c918e1 100644 | 
| --- a/src/compilation-info.cc | 
| +++ b/src/compilation-info.cc | 
| @@ -166,11 +166,13 @@ StackFrame::Type CompilationInfo::GetOutputStackFrameType() const { | 
| #undef CASE_KIND | 
| return StackFrame::STUB; | 
| case Code::WASM_FUNCTION: | 
| -      return StackFrame::WASM; | 
| +      return StackFrame::WASM_COMPILED; | 
| case Code::JS_TO_WASM_FUNCTION: | 
| return StackFrame::JS_TO_WASM; | 
| case Code::WASM_TO_JS_FUNCTION: | 
| return StackFrame::WASM_TO_JS; | 
| +    case Code::WASM_INTERPRETER_ENTRY: | 
| +      return StackFrame::WASM_INTERPRETER_ENTRY; | 
| default: | 
| UNIMPLEMENTED(); | 
| return StackFrame::NONE; | 
|  |