From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JkBIF-0005lR-K4 for qemu-devel@nongnu.org; Fri, 11 Apr 2008 00:55:19 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JkBIF-0005kr-0I for qemu-devel@nongnu.org; Fri, 11 Apr 2008 00:55:19 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JkBIE-0005kc-IF for qemu-devel@nongnu.org; Fri, 11 Apr 2008 00:55:18 -0400 Received: from savannah.gnu.org ([199.232.41.3] 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 1JkBIE-0006oq-Ny for qemu-devel@nongnu.org; Fri, 11 Apr 2008 00:55:18 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1JkBID-0000EF-GW for qemu-devel@nongnu.org; Fri, 11 Apr 2008 04:55:17 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1JkBID-0000EB-B9 for qemu-devel@nongnu.org; Fri, 11 Apr 2008 04:55:17 +0000 MIME-Version: 1.0 Errors-To: aurel32 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aurelien Jarno Message-Id: Date: Fri, 11 Apr 2008 04:55:17 +0000 Subject: [Qemu-devel] [4188] Fix compiler warnings 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: 4188 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4188 Author: aurel32 Date: 2008-04-11 04:55:17 +0000 (Fri, 11 Apr 2008) Log Message: ----------- Fix compiler warnings (Stefan Weil) Modified Paths: -------------- trunk/cpu-exec.c Modified: trunk/cpu-exec.c =================================================================== --- trunk/cpu-exec.c 2008-04-11 04:55:07 UTC (rev 4187) +++ trunk/cpu-exec.c 2008-04-11 04:55:17 UTC (rev 4188) @@ -882,6 +882,8 @@ do it (XXX: use sigsetjmp) */ sigprocmask(SIG_SETMASK, old_set, NULL); cpu_loop_exit(); + /* never comes here */ + return 1; } #elif defined(TARGET_SPARC) static inline int handle_cpu_signal(unsigned long pc, unsigned long address, @@ -918,6 +920,8 @@ do it (XXX: use sigsetjmp) */ sigprocmask(SIG_SETMASK, old_set, NULL); cpu_loop_exit(); + /* never comes here */ + return 1; } #elif defined (TARGET_PPC) static inline int handle_cpu_signal(unsigned long pc, unsigned long address,