Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(335)

Unified Diff: src/frames.cc

Issue 1879543002: [runtime] fix Frame Type compute for wasm code (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/frames.cc
diff --git a/src/frames.cc b/src/frames.cc
index d9fa728b07a3bcf01b18f93545ced149cea8dd65..6d2842537a61eea8dbf948b2b92b2412f120ecce 100644
--- a/src/frames.cc
+++ b/src/frames.cc
@@ -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:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698