diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2020-12-16 13:27:58 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-01-02 21:03:36 +0100 |
| commit | 3b9bd3f46b3b92501186acd18e81d3e8510b7b09 (patch) | |
| tree | 5cad86c996f731f980cb9c0ff0ac6af2ed30a064 /softmmu/physmem.c | |
| parent | 953d5a9ef326da80b2abc37f73c6e8525c3da033 (diff) | |
| download | focaccia-qemu-3b9bd3f46b3b92501186acd18e81d3e8510b7b09.tar.gz focaccia-qemu-3b9bd3f46b3b92501186acd18e81d3e8510b7b09.zip | |
remove TCG includes from common code
Enable removing tcg/$tcg_arch from the include path when TCG is disabled. Move translate-all.h to include/exec, since stubs exist for the functions defined therein. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'softmmu/physmem.c')
| -rw-r--r-- | softmmu/physmem.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/softmmu/physmem.c b/softmmu/physmem.c index 2cd1de4a2c..67b53d39e4 100644 --- a/softmmu/physmem.c +++ b/softmmu/physmem.c @@ -25,7 +25,6 @@ #include "cpu.h" #include "exec/exec-all.h" #include "exec/target_page.h" -#include "tcg/tcg.h" #include "hw/qdev-core.h" #include "hw/qdev-properties.h" #include "hw/boards.h" @@ -53,7 +52,7 @@ #include "qemu/rcu_queue.h" #include "qemu/main-loop.h" -#include "translate-all.h" +#include "exec/translate-all.h" #include "sysemu/replay.h" #include "exec/memory-internal.h" |