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

Unified Diff: runtime/vm/object.cc

Issue 2388093003: VM: Make optimized try-catch work in DBC. (Closed)
Patch Set: new test file 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
Index: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index c0024b9cea9b6304a2a260873056371036236046..cd5c60c455295dbaf6b50f291b679b7b73bd3fac 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -12165,7 +12165,7 @@ RawStackmap* Stackmap::New(intptr_t length,
const char* Stackmap::ToCString() const {
-#define FORMAT "%#x: "
+#define FORMAT "%#05x: "
if (IsNull()) {
return "{null}";
} else {

Powered by Google App Engine
This is Rietveld 408576698