diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2014-03-28 18:00:25 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-06-05 16:10:33 +0200 |
| commit | 58ed270df9764c90b5b8b750be5af2f82ceab0be (patch) | |
| tree | bdd26519bc8fb1fd0e4de4fd4e9d5aa20f116ca9 | |
| parent | 0f590e749f7c838bfd40b79242fc5aeb91e81747 (diff) | |
| download | focaccia-qemu-58ed270df9764c90b5b8b750be5af2f82ceab0be.tar.gz focaccia-qemu-58ed270df9764c90b5b8b750be5af2f82ceab0be.zip | |
softmmu: move softmmu_template.h out of include/
It is only included in cputlb.c now. Reviewed-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
| -rw-r--r-- | cputlb.c | 16 | ||||
| -rw-r--r-- | softmmu_template.h (renamed from include/exec/softmmu_template.h) | 0 |
2 files changed, 8 insertions, 8 deletions
diff --git a/cputlb.c b/cputlb.c index 0a884f8003..e70cf7a739 100644 --- a/cputlb.c +++ b/cputlb.c @@ -334,16 +334,16 @@ tb_page_addr_t get_page_addr_code(CPUArchState *env1, target_ulong addr) #define MMUSUFFIX _mmu #define SHIFT 0 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" #define SHIFT 1 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" #define SHIFT 2 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" #define SHIFT 3 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" #undef MMUSUFFIX #define MMUSUFFIX _cmmu @@ -354,13 +354,13 @@ tb_page_addr_t get_page_addr_code(CPUArchState *env1, target_ulong addr) #define SOFTMMU_CODE_ACCESS #define SHIFT 0 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" #define SHIFT 1 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" #define SHIFT 2 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" #define SHIFT 3 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" diff --git a/include/exec/softmmu_template.h b/softmmu_template.h index 5a07f991a1..5a07f991a1 100644 --- a/include/exec/softmmu_template.h +++ b/softmmu_template.h |