--- old/src/share/vm/gc_implementation/shenandoah/shenandoahGCTraceTime.cpp 2019-02-08 20:30:01.642007488 +0300 +++ new/src/share/vm/gc_implementation/shenandoah/shenandoahGCTraceTime.cpp 2019-02-08 20:30:01.598008948 +0300 @@ -33,7 +33,7 @@ #include "runtime/thread.inline.hpp" #include "runtime/timer.hpp" #include "utilities/ostream.hpp" -#include "utilities/ticks.inline.hpp" +#include "utilities/ticks.hpp" ShenandoahGCTraceTime::ShenandoahGCTraceTime(const char* title, bool doit, GCTimer* timer, GCId gc_id, bool print_heap) : @@ -72,7 +72,7 @@ if (_doit) { const Tickspan duration = stop_counter - _start_counter; - double secs = TicksToTimeHelper::seconds(duration); + double secs = duration.seconds(); size_t bytes_after = _heap->used(); size_t capacity = _heap->capacity();