From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NXimA-0006aP-3M for qemu-devel@nongnu.org; Wed, 20 Jan 2010 17:11:46 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NXim5-0006Ub-Bq for qemu-devel@nongnu.org; Wed, 20 Jan 2010 17:11:45 -0500 Received: from [199.232.76.173] (port=38550 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NXim5-0006UP-1J for qemu-devel@nongnu.org; Wed, 20 Jan 2010 17:11:41 -0500 Received: from moutng.kundenserver.de ([212.227.17.10]:63675) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NXim2-0005M0-EF for qemu-devel@nongnu.org; Wed, 20 Jan 2010 17:11:40 -0500 Received: from localhost ([127.0.0.1] ident=stefan) by flocke.weilnetz.de with esmtp (Exim 4.71) (envelope-from ) id 1NXim0-00068S-Lf for qemu-devel@nongnu.org; Wed, 20 Jan 2010 23:11:36 +0100 Message-ID: <4B577F98.6050603@mail.berlios.de> Date: Wed, 20 Jan 2010 23:11:36 +0100 From: Stefan Weil MIME-Version: 1.0 References: <1264013005-16965-1-git-send-email-weil@mail.berlios.de> In-Reply-To: <1264013005-16965-1-git-send-email-weil@mail.berlios.de> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] Re: [PATCH 01/14] arm host: Fix compiler warning List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers Stefan Weil schrieb: > Compilation for arm (native or cross) results in this > warning: > > fpu/softfloat-native.c: In function ‘float64_round_to_int’: > fpu/softfloat-native.c:387: error: control reaches end of non-void function > > float64_round_to_int uses special assembler code for arm > and has no explicit return value. > > As there is no obvious reason why arm should need special > code, all fpu related conditionals were removed. > The remaining code is standard (C99) and compiles for arm, > too. > > Signed-off-by: Stefan Weil > --- > fpu/softfloat-native.c | 20 -------------------- > fpu/softfloat-native.h | 7 ------- > 2 files changed, 0 insertions(+), 27 deletions(-) > The "subject" line was wrong: the patch is complete and can be applied as it is. I'm sorry if I created confusion. Stefan Weil