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

Unified Diff: runtime/vm/dart.cc

Issue 2723213002: DWARF and unwind support for AOT assembly output. (Closed)
Patch Set: . Created 3 years, 9 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
Index: runtime/vm/dart.cc
diff --git a/runtime/vm/dart.cc b/runtime/vm/dart.cc
index 5a6a1b9fa3b8f138895727ab498b36c1871cc9b4..cb2bb7e1fa51762ac312050fcb1517e4e58af0ca 100644
--- a/runtime/vm/dart.cc
+++ b/runtime/vm/dart.cc
@@ -709,6 +709,10 @@ const char* Dart::FeaturesString(Isolate* isolate, Snapshot::Kind kind) {
#endif
}
+ if (FLAG_dwarf_stack_traces) {
+ buffer.AddString(" dwarf-stack-traces");
+ }
+
return buffer.Steal();
}

Powered by Google App Engine
This is Rietveld 408576698