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

Unified Diff: runtime/vm/object.cc

Issue 343803002: Finishes removing intptr_t from raw object fields. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 6 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
===================================================================
--- runtime/vm/object.cc (revision 37464)
+++ runtime/vm/object.cc (working copy)
@@ -10547,8 +10547,8 @@
const RawLocalVarDescriptors::VarInfo& info) {
if (info.kind == RawLocalVarDescriptors::kContextLevel) {
return OS::SNPrint(buffer, len,
- "%2" Pd " %-13s level=%-3" Pd " scope=%-3d"
- " begin=%-3" Pd " end=%" Pd "\n",
+ "%2" Pd " %-13s level=%-3d scope=%-3d"
+ " begin=%-3d end=%d\n",
i,
VarKindString(info.kind),
info.index,
@@ -10557,8 +10557,8 @@
info.end_pos);
} else if (info.kind == RawLocalVarDescriptors::kContextVar) {
return OS::SNPrint(buffer, len,
- "%2" Pd " %-13s level=%-3d index=%-3" Pd ""
- " begin=%-3" Pd " end=%-3" Pd " name=%s\n",
+ "%2" Pd " %-13s level=%-3d index=%-3d"
+ " begin=%-3d end=%-3d name=%s\n",
i,
VarKindString(info.kind),
info.scope_id,
@@ -10568,8 +10568,8 @@
var_name.ToCString());
} else {
return OS::SNPrint(buffer, len,
- "%2" Pd " %-13s scope=%-3d index=%-3" Pd ""
- " begin=%-3" Pd " end=%-3" Pd " name=%s\n",
+ "%2" Pd " %-13s scope=%-3d index=%-3d"
+ " begin=%-3d end=%-3d name=%s\n",
i,
VarKindString(info.kind),
info.scope_id,
« no previous file with comments | « runtime/vm/debugger.cc ('k') | runtime/vm/raw_object.h » ('j') | runtime/vm/raw_object.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698