summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2015-01-26 20:28:47 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-01-26 20:28:47 +0000
commitb80c3154d3b6359d8ad4ce50d3a6a68224400cdd (patch)
treea1c69c6bb333b4fbae4e590df59d56ad9edaf71d
parent2ca19c23b9bc64c743a4cdbe9282ad4d995b398d (diff)
parent3ef69b4692978daa620f2db2b1b057ef38c8a2f5 (diff)
downloadart-b80c3154d3b6359d8ad4ce50d3a6a68224400cdd.zip
art-b80c3154d3b6359d8ad4ce50d3a6a68224400cdd.tar.gz
art-b80c3154d3b6359d8ad4ce50d3a6a68224400cdd.tar.bz2
Merge "ART: Take apart stream output"
-rw-r--r--runtime/utils.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/utils.cc b/runtime/utils.cc
index 908cfbd..8347b7e 100644
--- a/runtime/utils.cc
+++ b/runtime/utils.cc
@@ -1228,8 +1228,9 @@ void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix,
if (!it->map) {
os << StringPrintf("%08" PRIxPTR " ???", it->pc);
} else {
- os << StringPrintf("%08" PRIxPTR " ", it->pc - it->map->start)
- << it->map->name << " (";
+ os << StringPrintf("%08" PRIxPTR " ", it->pc - it->map->start);
+ os << it->map->name;
+ os << " (";
if (!it->func_name.empty()) {
os << it->func_name;
if (it->func_offset != 0) {