tcg: Include "qemu/timer.h" for profile_getclock
authorRichard W.M. Jones <rjones@redhat.com>
Fri, 3 Mar 2023 08:49:48 +0000 (08:49 +0000)
committerRichard Henderson <richard.henderson@linaro.org>
Sun, 5 Mar 2023 21:44:07 +0000 (13:44 -0800)
commit533206f0520e2d46362e4e6d920c8b9fa7ec1bb4
tree93b0900f54c0a4916bbed02ce7a633b0f47ab395
parent2946e1af2704bf6584f57d4e3aec49d1d5f3ecc0
tcg: Include "qemu/timer.h" for profile_getclock

When CONFIG_PROFILER is set there are various undefined references to
profile_getclock.  Include the header which defines this function.

For example:

../tcg/tcg.c: In function ‘tcg_gen_code’:
../tcg/tcg.c:4905:51: warning: implicit declaration of function ‘profile_getclock’ [-Wimplicit-function-declaration]
 4905 |     qatomic_set(&prof->opt_time, prof->opt_time - profile_getclock());
      |                                                   ^~~~~~~~~~~~~~~~

Signed-off-by: Richard W.M. Jones <rjones@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230303084948.3351546-1-rjones@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
accel/tcg/tcg-accel-ops.c
accel/tcg/translate-all.c
softmmu/runstate.c
tcg/tcg.c