From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35582) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSpOW-0007Ib-Ey for qemu-devel@nongnu.org; Wed, 26 Mar 2014 11:05:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WSpOM-0005CW-Mg for qemu-devel@nongnu.org; Wed, 26 Mar 2014 11:05:32 -0400 Message-ID: <5332ECAC.9070308@gmail.com> Date: Wed, 26 Mar 2014 10:05:16 -0500 From: Tom Musta MIME-Version: 1.0 References: <1395597768-3159-1-git-send-email-tommusta@gmail.com> <532F57A9.8070909@gmail.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [V2 PATCH] target-ppc: Bug: VSX Convert to Integer Should Truncate List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: "qemu-ppc@nongnu.org" , QEMU Developers On 3/25/2014 1:06 PM, Peter Maydell wrote: > Looking at this a little more closely, why aren't we > just using the _round_to_zero versions of the float > to int conversion softfloat functions? (This is how > we implement fctiwz vs fctiw, for instance.) Unfortunately, the softfloat list of these functions is not complete. Specifically, float32_to_uint64_round_to_zero is missing. I can add it but this means a bigger patch. Thoughts?