From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51460) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WsYZ8-0006qn-Lv for qemu-devel@nongnu.org; Thu, 05 Jun 2014 10:22:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WsYZ1-0008UH-Hu for qemu-devel@nongnu.org; Thu, 05 Jun 2014 10:22:50 -0400 Received: from mail-wi0-x229.google.com ([2a00:1450:400c:c05::229]:60573) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WsYZ1-0008TJ-C0 for qemu-devel@nongnu.org; Thu, 05 Jun 2014 10:22:43 -0400 Received: by mail-wi0-f169.google.com with SMTP id hi2so9736117wib.4 for ; Thu, 05 Jun 2014 07:22:42 -0700 (PDT) Received: from playground.station (net-37-117-132-7.cust.vodafonedsl.it. [37.117.132.7]) by mx.google.com with ESMTPSA id p9sm14884136eeg.32.2014.06.05.07.22.40 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 05 Jun 2014 07:22:41 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Thu, 5 Jun 2014 16:22:00 +0200 Message-Id: <1401978143-11896-11-git-send-email-pbonzini@redhat.com> In-Reply-To: <1401978143-11896-1-git-send-email-pbonzini@redhat.com> References: <1401978143-11896-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 10/33] 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 It is only included in cputlb.c now. Reviewed-by: Richard Henderson 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