From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39958) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zd7at-0005dO-35 for qemu-devel@nongnu.org; Fri, 18 Sep 2015 22:09:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zd7ao-0000cK-2U for qemu-devel@nongnu.org; Fri, 18 Sep 2015 22:09:38 -0400 Received: from mail-pa0-x22c.google.com ([2607:f8b0:400e:c03::22c]:32946) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zd7an-0000bj-S1 for qemu-devel@nongnu.org; Fri, 18 Sep 2015 22:09:33 -0400 Received: by pacex6 with SMTP id ex6so65364202pac.0 for ; Fri, 18 Sep 2015 19:09:33 -0700 (PDT) Sender: Richard Henderson References: <1442619707-3822-1-git-send-email-gang.chen.5i5j@gmail.com> From: Richard Henderson Message-ID: <55FCC3DA.4070100@twiddle.net> Date: Fri, 18 Sep 2015 19:09:30 -0700 MIME-Version: 1.0 In-Reply-To: <1442619707-3822-1-git-send-email-gang.chen.5i5j@gmail.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] target-tilegx: Implement v*shl, v*shru, and v*shrs instructions List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: gang.chen.5i5j@gmail.com, peter.maydell@linaro.org Cc: qemu-devel@nongnu.org, xili_gchen_5257@hotmail.com On 09/18/2015 04:41 PM, gang.chen.5i5j@gmail.com wrote: > +uint64_t helper_v4shl(uint64_t a, uint64_t b) > +{ > + uint64_t m; > + > + b &= 63; 31. All of the v4 functions have the same error. r~