From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52084) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WnrHr-0003d0-JF for qemu-devel@nongnu.org; Fri, 23 May 2014 11:21:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WnrHl-0005MM-1e for qemu-devel@nongnu.org; Fri, 23 May 2014 11:21:35 -0400 Received: from mx1.redhat.com ([209.132.183.28]:8743) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WnrHk-0005Ly-Pw for qemu-devel@nongnu.org; Fri, 23 May 2014 11:21:28 -0400 From: Paolo Bonzini Date: Fri, 23 May 2014 17:20:54 +0200 Message-Id: <1400858457-20391-11-git-send-email-pbonzini@redhat.com> In-Reply-To: <1400858457-20391-1-git-send-email-pbonzini@redhat.com> References: <1400858457-20391-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 10/13] softmmu: move softmmu_template.h out of include/ List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, afaerber@suse.de It is only included in cputlb.c now. Reviewed-by: Richard Henderson Signed-off-by: Paolo Bonzini --- cputlb.c | 16 ++++++++-------- .../exec/softmmu_template.h => softmmu_template.h | 0 2 files changed, 8 insertions(+), 8 deletions(-) rename include/exec/softmmu_template.h => softmmu_template.h (100%) diff --git a/cputlb.c b/cputlb.c index 0a884f8..e70cf7a 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 similarity index 100% rename from include/exec/softmmu_template.h rename to softmmu_template.h -- 1.7.1