aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Beschow <shentey@gmail.com>2022-05-20 20:01:07 +0200
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>2022-06-11 23:50:35 +0200
commitc304d11f45777eba014c394e09f8a9aacf2a928d (patch)
tree8f73627981d700b612b6ddb05aecc9c817de30a7
parentb1f66fab45e795eca94f61674be1ef5ce223f65d (diff)
downloadqemu-c304d11f45777eba014c394e09f8a9aacf2a928d.zip
qemu-c304d11f45777eba014c394e09f8a9aacf2a928d.tar.gz
qemu-c304d11f45777eba014c394e09f8a9aacf2a928d.tar.bz2
accel/tcg/cpu-exec: Unexport dump_drift_info()
Commit 3a841ab53f165910224dc4bebabf1a8f1d04200c 'qapi: introduce x-query-jit QMP command' basically moved the only function using dump_drift_info() to cpu-exec.c. Therefore, dump_drift_info() doesn't need to be exported any longer. Signed-off-by: Bernhard Beschow <shentey@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Acked-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Message-Id: <20220520180109.8224-9-shentey@gmail.com> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
-rw-r--r--accel/tcg/cpu-exec.c2
-rw-r--r--include/exec/cpu-all.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/accel/tcg/cpu-exec.c b/accel/tcg/cpu-exec.c
index 635aeec..7cbf999 100644
--- a/accel/tcg/cpu-exec.c
+++ b/accel/tcg/cpu-exec.c
@@ -1048,7 +1048,7 @@ void tcg_exec_unrealizefn(CPUState *cpu)
#ifndef CONFIG_USER_ONLY
-void dump_drift_info(GString *buf)
+static void dump_drift_info(GString *buf)
{
if (!icount_enabled()) {
return;
diff --git a/include/exec/cpu-all.h b/include/exec/cpu-all.h
index 5d5290d..9a716be 100644
--- a/include/exec/cpu-all.h
+++ b/include/exec/cpu-all.h
@@ -419,8 +419,6 @@ static inline bool tlb_hit(target_ulong tlb_addr, target_ulong addr)
}
#ifdef CONFIG_TCG
-/* accel/tcg/cpu-exec.c */
-void dump_drift_info(GString *buf);
/* accel/tcg/translate-all.c */
void dump_exec_info(GString *buf);
void dump_opcount_info(GString *buf);