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

Unified Diff: runtime/vm/debugger.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/debugger.cc
===================================================================
--- runtime/vm/debugger.cc (revision 37464)
+++ runtime/vm/debugger.cc (working copy)
@@ -454,8 +454,7 @@
var_descriptors_.GetInfo(i, &var_info);
if (var_info.kind == RawLocalVarDescriptors::kSavedEntryContext) {
if (FLAG_trace_debugger_stacktrace) {
- OS::PrintErr("\tFound saved entry ctx at index %" Pd "\n",
- var_info.index);
+ OS::PrintErr("\tFound saved entry ctx at index %d\n", var_info.index);
}
return GetLocalContextVar(var_info.index);
}
@@ -476,8 +475,7 @@
var_descriptors_.GetInfo(i, &var_info);
if (var_info.kind == RawLocalVarDescriptors::kSavedCurrentContext) {
if (FLAG_trace_debugger_stacktrace) {
- OS::PrintErr("\tFound saved current ctx at index %" Pd "\n",
- var_info.index);
+ OS::PrintErr("\tFound saved current ctx at index %d\n", var_info.index);
}
return GetLocalContextVar(var_info.index);
}
« no previous file with comments | « runtime/vm/dart_api_message.cc ('k') | runtime/vm/object.cc » ('j') | runtime/vm/raw_object.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698