Commit 4ea47aa0 authored by weiliang.lin's avatar weiliang.lin Committed by Commit bot

[runtime] fix Frame Type compute for wasm code

WASM codes always have a StackFrame::Type marker.

BUG=

Review URL: https://codereview.chromium.org/1879543002

Cr-Commit-Position: refs/heads/master@{#35553}
parent 662caac9
......@@ -486,10 +486,10 @@ StackFrame::Type StackFrame::ComputeType(const StackFrameIteratorBase* iterator,
case INTERNAL:
case CONSTRUCT:
case ARGUMENTS_ADAPTOR:
return candidate;
case JS_TO_WASM:
case WASM_TO_JS:
case WASM:
return candidate;
case JS_TO_WASM:
case JAVA_SCRIPT:
case OPTIMIZED:
case INTERPRETED:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment