diff options
| author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-05-24 19:04:53 +0200 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2021-05-26 15:33:59 -0700 |
| commit | e5ceadff47ddec1513a56f96d9df246f62c90875 (patch) | |
| tree | ced5b40c000523b5c6c8954bf1cf33548fee4c47 /accel/tcg/tcg-runtime.c | |
| parent | 824f4bac9ffa2757293290c7edd065dc84a6521e (diff) | |
| download | focaccia-qemu-e5ceadff47ddec1513a56f96d9df246f62c90875.tar.gz focaccia-qemu-e5ceadff47ddec1513a56f96d9df246f62c90875.zip | |
accel/tcg: Keep TranslationBlock headers local to TCG
Only the TCG accelerator uses the TranslationBlock API. Move the tb-context.h / tb-hash.h / tb-lookup.h from the global namespace to the TCG one (in accel/tcg). Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210524170453.3791436-3-f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel/tcg/tcg-runtime.c')
| -rw-r--r-- | accel/tcg/tcg-runtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/tcg/tcg-runtime.c b/accel/tcg/tcg-runtime.c index 49f5de37e8..66ac830e2f 100644 --- a/accel/tcg/tcg-runtime.c +++ b/accel/tcg/tcg-runtime.c @@ -30,7 +30,7 @@ #include "disas/disas.h" #include "exec/log.h" #include "tcg/tcg.h" -#include "exec/tb-lookup.h" +#include "tb-lookup.h" /* 32-bit helpers */ |