From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59729) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1adMbc-00051S-Ev for qemu-devel@nongnu.org; Tue, 08 Mar 2016 13:43:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1adMbY-0007TQ-L5 for qemu-devel@nongnu.org; Tue, 08 Mar 2016 13:43:40 -0500 Received: from mail-qg0-x242.google.com ([2607:f8b0:400d:c04::242]:35159) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1adMbY-0007TM-H1 for qemu-devel@nongnu.org; Tue, 08 Mar 2016 13:43:36 -0500 Received: by mail-qg0-x242.google.com with SMTP id p68so1547778qge.2 for ; Tue, 08 Mar 2016 10:43:36 -0800 (PST) Sender: Richard Henderson References: <1457458958-23933-1-git-send-email-kbastian@mail.uni-paderborn.de> <1457458958-23933-5-git-send-email-kbastian@mail.uni-paderborn.de> From: Richard Henderson Message-ID: <56DF1D55.3010901@twiddle.net> Date: Tue, 8 Mar 2016 13:43:33 -0500 MIME-Version: 1.0 In-Reply-To: <1457458958-23933-5-git-send-email-kbastian@mail.uni-paderborn.de> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 4/7] target-tricore: Add mul.f instruction List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Bastian Koppelmann , qemu-devel@nongnu.org On 03/08/2016 12:42 PM, Bastian Koppelmann wrote: > + arg1 = float32_squash_input_denormal(arg1, &env->fp_status); > + arg2 = float32_squash_input_denormal(arg2, &env->fp_status); > + > + f_result = float32_mul(arg1, arg2, &env->fp_status); > + Same as add/sub. Reviewed-by: Richard Henderson r~