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

Unified Diff: src/frames.cc

Issue 2443573002: [compiler] Prepare for partially shipping Ignition. (Closed)
Patch Set: Rebased. Created 4 years, 2 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 | « src/d8.cc ('k') | src/heap/mark-compact.cc » ('j') | 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 a9e696ba4fc36798bdbdef5fdc30ef64e274a89b..b52052eee8ba555e3bb16f18133acdb433c02ffb 100644
--- a/src/frames.cc
+++ b/src/frames.cc
@@ -439,8 +439,8 @@ StackFrame::Type StackFrame::ComputeType(const StackFrameIteratorBase* iterator,
if (!marker->IsSmi()) {
if (maybe_function->IsSmi()) {
return NONE;
- } else if (FLAG_ignition && IsInterpreterFramePc(iterator->isolate(),
- *(state->pc_address))) {
+ } else if (IsInterpreterFramePc(iterator->isolate(),
+ *(state->pc_address))) {
return INTERPRETED;
} else {
return JAVA_SCRIPT;
« no previous file with comments | « src/d8.cc ('k') | src/heap/mark-compact.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698