Index: src/compilation-info.cc |
diff --git a/src/compilation-info.cc b/src/compilation-info.cc |
index 5758b41a6b7a7fd7803420f353543073322810b1..1f27aade96088c8ab3906cb5553d4f77e6353b1d 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_TO_INTERPRETER: |
+ return StackFrame::WASM_TO_INTERPRETER; |
default: |
UNIMPLEMENTED(); |
return StackFrame::NONE; |