diff options
author | Alex Light <allight@google.com> | 2014-06-24 10:27:40 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2014-06-24 12:15:46 -0700 |
commit | b03a0ec8cf841bf49d2e146e140cb3ca21eca752 (patch) | |
tree | d09086a1bb1b3b4a095fcbe342ce7396902738a3 /dex2oat | |
parent | fbd18f1923334f3208cfe6ba5f1d4f9eb421b063 (diff) | |
download | art-b03a0ec8cf841bf49d2e146e140cb3ca21eca752.zip art-b03a0ec8cf841bf49d2e146e140cb3ca21eca752.tar.gz art-b03a0ec8cf841bf49d2e146e140cb3ca21eca752.tar.bz2 |
Fixed ImageWriter timings not being written out.
During host runs of dex2oat the timings for ImageWriter would not be
written out.
Change-Id: I74ce8bae724d1e732a6a1efb1c82804473081693
Diffstat (limited to 'dex2oat')
-rw-r--r-- | dex2oat/dex2oat.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc index 38051ea..4be6d87 100644 --- a/dex2oat/dex2oat.cc +++ b/dex2oat/dex2oat.cc @@ -1461,6 +1461,7 @@ static int dex2oat(int argc, char** argv) { } if (is_host) { + timings.EndSplit(); if (dump_timing || (dump_slow_timing && timings.GetTotalNs() > MsToNs(1000))) { LOG(INFO) << Dumpable<TimingLogger>(timings); } |