From patchwork Fri Oct 19 08:54:21 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 192594 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 46E1D2C008F for ; Fri, 19 Oct 2012 19:55:02 +1100 (EST) Received: from localhost ([::1]:46725 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TP8M8-0007tF-FX for incoming@patchwork.ozlabs.org; Fri, 19 Oct 2012 04:55:00 -0400 Received: from eggs.gnu.org ([208.118.235.92]:54011) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TP8Lp-0007hf-TP for qemu-devel@nongnu.org; Fri, 19 Oct 2012 04:54:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TP8Ll-0008EO-SV for qemu-devel@nongnu.org; Fri, 19 Oct 2012 04:54:41 -0400 Received: from mx1.redhat.com ([209.132.183.28]:48773) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TP8Ll-0008E9-It for qemu-devel@nongnu.org; Fri, 19 Oct 2012 04:54:37 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q9J8sads015411 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 19 Oct 2012 04:54:36 -0400 Received: from localhost (ovpn-112-24.ams2.redhat.com [10.36.112.24]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q9J8sZX1025992; Fri, 19 Oct 2012 04:54:35 -0400 From: Stefan Hajnoczi To: Anthony Liguori Date: Fri, 19 Oct 2012 10:54:21 +0200 Message-Id: <1350636864-22263-4-git-send-email-stefanha@redhat.com> In-Reply-To: <1350636864-22263-1-git-send-email-stefanha@redhat.com> References: <1350636864-22263-1-git-send-email-stefanha@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: Peter Maydell , qemu-devel@nongnu.org, Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 3/6] target-arm/neon_helper: Remove obsolete FIXME comment X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Peter Maydell Commit 33ebc29 fixed the bugs in the implementation of VQRSHL, but forgot to remove the FIXME comment... Signed-off-by: Peter Maydell Signed-off-by: Stefan Hajnoczi --- target-arm/neon_helper.c | 1 - 1 file changed, 1 deletion(-) diff --git a/target-arm/neon_helper.c b/target-arm/neon_helper.c index 8bb5129..9aa920d 100644 --- a/target-arm/neon_helper.c +++ b/target-arm/neon_helper.c @@ -788,7 +788,6 @@ uint64_t HELPER(neon_qshlu_s64)(CPUARMState *env, uint64_t valop, uint64_t shift return helper_neon_qshl_u64(env, valop, shiftop); } -/* FIXME: This is wrong. */ #define NEON_FN(dest, src1, src2) do { \ int8_t tmp; \ tmp = (int8_t)src2; \