From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JvcIw-00033a-Op for qemu-devel@nongnu.org; Mon, 12 May 2008 13:59:18 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JvcIv-00033D-Hj for qemu-devel@nongnu.org; Mon, 12 May 2008 13:59:17 -0400 Received: from [199.232.76.173] (port=56850 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JvcIv-000334-E3 for qemu-devel@nongnu.org; Mon, 12 May 2008 13:59:17 -0400 Received: from savannah.gnu.org ([199.232.41.3]:46523 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 1JvcIv-0007Fi-7R for qemu-devel@nongnu.org; Mon, 12 May 2008 13:59:17 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1JvcIu-0004vK-I4 for qemu-devel@nongnu.org; Mon, 12 May 2008 17:59:16 +0000 Received: from blueswir1 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1JvcIu-0004vA-4D for qemu-devel@nongnu.org; Mon, 12 May 2008 17:59:16 +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: Mon, 12 May 2008 17:59:16 +0000 Subject: [Qemu-devel] [4443] Move prototype back to avoid a compiler warning 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: 4443 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4443 Author: blueswir1 Date: 2008-05-12 17:59:14 +0000 (Mon, 12 May 2008) Log Message: ----------- Move prototype back to avoid a compiler warning Modified Paths: -------------- trunk/target-sparc/exec.h trunk/target-sparc/helper.h Modified: trunk/target-sparc/exec.h =================================================================== --- trunk/target-sparc/exec.h 2008-05-12 17:22:13 UTC (rev 4442) +++ trunk/target-sparc/exec.h 2008-05-12 17:59:14 UTC (rev 4443) @@ -30,6 +30,7 @@ int cpu_sparc_handle_mmu_fault(CPUState *env1, target_ulong address, int rw, int mmu_idx, int is_softmmu); +void do_interrupt(int intno); static inline int cpu_halted(CPUState *env1) { if (!env1->halted) Modified: trunk/target-sparc/helper.h =================================================================== --- trunk/target-sparc/helper.h 2008-05-12 17:22:13 UTC (rev 4442) +++ trunk/target-sparc/helper.h 2008-05-12 17:59:14 UTC (rev 4443) @@ -180,7 +180,6 @@ void cpu_unlock(void); void cpu_loop_exit(void); void set_cwp(int new_cwp); -void do_interrupt(int intno); void memcpy32(target_ulong *dst, const target_ulong *src); target_ulong mmu_probe(CPUState *env, target_ulong address, int mmulev); void dump_mmu(CPUState *env);