From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LCg1x-0008TF-Mg for qemu-devel@nongnu.org; Tue, 16 Dec 2008 14:56:33 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LCg1w-0008SM-5F for qemu-devel@nongnu.org; Tue, 16 Dec 2008 14:56:33 -0500 Received: from [199.232.76.173] (port=53080 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LCg1v-0008SB-U1 for qemu-devel@nongnu.org; Tue, 16 Dec 2008 14:56:31 -0500 Received: from mx20.gnu.org ([199.232.41.8]:29069) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LCg1v-0007bO-7G for qemu-devel@nongnu.org; Tue, 16 Dec 2008 14:56:31 -0500 Received: from mail.codesourcery.com ([65.74.133.4]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LCg1u-00023S-80 for qemu-devel@nongnu.org; Tue, 16 Dec 2008 14:56:30 -0500 Date: Tue, 16 Dec 2008 11:56:28 -0800 From: Nathan Froyd Subject: Re: [Qemu-devel] [PATCH 22/42] target-ppc: add vs{l,r} instructions. Message-ID: <20081216195628.GF24654@codesourcery.com> References: <1229379335-8782-1-git-send-email-froydnj@codesourcery.com> <1229379335-8782-4-git-send-email-froydnj@codesourcery.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1229379335-8782-4-git-send-email-froydnj@codesourcery.com> 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 On Mon, Dec 15, 2008 at 02:15:35PM -0800, Nathan Froyd wrote: > target-ppc/helper.h | 2 ++ > target-ppc/op_helper.c | 35 +++++++++++++++++++++++++++++++++++ > target-ppc/translate.c | 2 ++ > 3 files changed, 39 insertions(+), 0 deletions(-) Change from previous version: Fix bug in helper_vs{l,r}: we don't want to left- or right-shift R into itself, but shift A and then store than into R. -Nathan