From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JuYwv-0002L1-UR for qemu-devel@nongnu.org; Fri, 09 May 2008 16:12:13 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JuYwv-0002KK-8B for qemu-devel@nongnu.org; Fri, 09 May 2008 16:12:13 -0400 Received: from [199.232.76.173] (port=55104 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JuYwv-0002KH-6J for qemu-devel@nongnu.org; Fri, 09 May 2008 16:12:13 -0400 Received: from savannah.gnu.org ([199.232.41.3]:41295 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JuYwu-0005Cc-VV for qemu-devel@nongnu.org; Fri, 09 May 2008 16:12:13 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1JuYwt-0003Bt-4b for qemu-devel@nongnu.org; Fri, 09 May 2008 20:12:11 +0000 Received: from blueswir1 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1JuYws-0003Bo-G7 for qemu-devel@nongnu.org; Fri, 09 May 2008 20:12:10 +0000 MIME-Version: 1.0 Errors-To: blueswir1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Blue Swirl Message-Id: Date: Fri, 09 May 2008 20:12:10 +0000 Subject: [Qemu-devel] [4398] Move #include to speed up compilation Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 4398 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4398 Author: blueswir1 Date: 2008-05-09 20:12:09 +0000 (Fri, 09 May 2008) Log Message: ----------- Move #include to speed up compilation Modified Paths: -------------- trunk/target-sparc/exec.h trunk/target-sparc/op_helper.c Modified: trunk/target-sparc/exec.h =================================================================== --- trunk/target-sparc/exec.h 2008-05-09 18:46:04 UTC (rev 4397) +++ trunk/target-sparc/exec.h 2008-05-09 20:12:09 UTC (rev 4398) @@ -56,11 +56,6 @@ target_ulong mmu_probe(CPUState *env, target_ulong address, int mmulev); void dump_mmu(CPUState *env); -/* XXX: move that to a generic header */ -#if !defined(CONFIG_USER_ONLY) -#include "softmmu_exec.h" -#endif /* !defined(CONFIG_USER_ONLY) */ - static inline void env_to_regs(void) { #if defined(reg_REGWPTR) Modified: trunk/target-sparc/op_helper.c =================================================================== --- trunk/target-sparc/op_helper.c 2008-05-09 18:46:04 UTC (rev 4397) +++ trunk/target-sparc/op_helper.c 2008-05-09 20:12:09 UTC (rev 4398) @@ -1,6 +1,9 @@ #include "exec.h" #include "host-utils.h" #include "helper.h" +#if !defined(CONFIG_USER_ONLY) +#include "softmmu_exec.h" +#endif /* !defined(CONFIG_USER_ONLY) */ //#define DEBUG_PCALL //#define DEBUG_MMU