diff options
Diffstat (limited to 'runtime/thread.cc')
-rw-r--r-- | runtime/thread.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/thread.cc b/runtime/thread.cc index 0fafbfa..7470670 100644 --- a/runtime/thread.cc +++ b/runtime/thread.cc @@ -1400,7 +1400,8 @@ class BuildInternalStackTraceVisitor : public StackVisitor { return true; // Ignore runtime frames (in particular callee save). } method_trace_->Set<kTransactionActive>(count_, m); - dex_pc_trace_->Set<kTransactionActive>(count_, m->IsProxyMethod() ? DexFile::kDexNoIndex : GetDexPc()); + dex_pc_trace_->Set<kTransactionActive>(count_, + m->IsProxyMethod() ? DexFile::kDexNoIndex : GetDexPc()); ++count_; return true; } |