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

Unified Diff: runtime/vm/dart.cc

Issue 2132833002: Make core snapshot word-size portable again. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: no size classes Created 4 years, 5 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 62c72264821ddb37cd395f2574f694f267525c9f..599d334449a10f11628eff1b9759639dff420f64 100644
--- a/runtime/vm/dart.cc
+++ b/runtime/vm/dart.cc
@@ -674,12 +674,6 @@ const char* Dart::FeaturesString(Snapshot::Kind kind) {
#elif defined(TARGET_ARCH_DBC64)
buffer.AddString(" dbc64");
#endif
- } else if (Snapshot::IsFull(kind)) {
-#if defined(ARCH_IS_32BIT)
- buffer.AddString(" 32");
-#else
- buffer.AddString(" 64");
-#endif
}
return buffer.Steal();

Powered by Google App Engine
This is Rietveld 408576698