From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52838) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WiRQw-0006OE-1p for qemu-devel@nongnu.org; Thu, 08 May 2014 12:44:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WiRQg-0003Fz-97 for qemu-devel@nongnu.org; Thu, 08 May 2014 12:44:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:45391) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WiRQg-0003Fj-1N for qemu-devel@nongnu.org; Thu, 08 May 2014 12:44:18 -0400 From: Paolo Bonzini Date: Thu, 8 May 2014 18:09:47 +0200 Message-Id: <1399565391-27833-8-git-send-email-pbonzini@redhat.com> In-Reply-To: <1399565391-27833-1-git-send-email-pbonzini@redhat.com> References: <1399565391-27833-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [RFC PATCH 07/11] 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, rth@twiddle.net It is only included in cputlb.c now. Signed-off-by: Paolo Bonzini --- cputlb.c | 16 ++++++++-------- include/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.8.3.1