From patchwork Fri Oct 12 18:07:23 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 12192 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 384AD23EFB for ; Fri, 12 Oct 2012 18:07:27 +0000 (UTC) Received: from mail-ie0-f180.google.com (mail-ie0-f180.google.com [209.85.223.180]) by fiordland.canonical.com (Postfix) with ESMTP id DD95CA188EA for ; Fri, 12 Oct 2012 18:07:26 +0000 (UTC) Received: by mail-ie0-f180.google.com with SMTP id e10so5079490iej.11 for ; Fri, 12 Oct 2012 11:07:26 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:x-gm-message-state; bh=Au4+Ghzrr2cjHDg5M17q3Vs1CRP+/jb7MyFK9SMhFEE=; b=Q3bP2krR107rKB4rXyjXd1qPJRLzG71HWvpXX+dmLAHYs9rzlb/+qweqnZGhbDOiGj WsoN0wFjK1n+fgNTMEYpuSb5QAbhhS1Ca4dPEAyKdPrYhIOkVVLm3wzRQwEkIuLZ+I/g sawf7nxGTuT2w5h8CKlTTVSImjQ+4a3+E4tEN6p8fdo0OLugQpvU4f/OlemhEvQL6dfa 579Y08bbr7Axy1dVMuXnSnUAk5+Ud/A1NftMbcd8haa7L5Ns4iHtJQYHthv9CBE3PYhj aj8kGVX5cJ0pguCbKv04Vi/6Rfy8bVgs8SXPkjDwVTPShDxKb7IST1pULmvbg4SAjGwA OmvA== Received: by 10.43.7.132 with SMTP id oo4mr4106435icb.6.1350065246367; Fri, 12 Oct 2012 11:07:26 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.50.67.148 with SMTP id n20csp232902igt; Fri, 12 Oct 2012 11:07:25 -0700 (PDT) Received: by 10.180.77.38 with SMTP id p6mr7845774wiw.1.1350065245105; Fri, 12 Oct 2012 11:07:25 -0700 (PDT) Received: from mnementh.archaic.org.uk (1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.d.1.0.0.b.8.0.1.0.0.2.ip6.arpa. [2001:8b0:1d0::1]) by mx.google.com with ESMTPS id l10si9585292weo.92.2012.10.12.11.07.24 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 12 Oct 2012 11:07:25 -0700 (PDT) Received-SPF: neutral (google.com: 2001:8b0:1d0::1 is neither permitted nor denied by best guess record for domain of pm215@archaic.org.uk) client-ip=2001:8b0:1d0::1; Authentication-Results: mx.google.com; spf=neutral (google.com: 2001:8b0:1d0::1 is neither permitted nor denied by best guess record for domain of pm215@archaic.org.uk) smtp.mail=pm215@archaic.org.uk Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1TMjdr-0003QU-LM; Fri, 12 Oct 2012 19:07:23 +0100 From: Peter Maydell To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, patches@linaro.org Subject: [PATCH] target-arm/neon_helper: Remove obsolete FIXME comment Date: Fri, 12 Oct 2012 19:07:23 +0100 Message-Id: <1350065243-13147-1-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 X-Gm-Message-State: ALoCoQme92YPG4/xqCsDQdVCdGill8D+j+iTlR1XdJSU+h36ZDAzLHWvkNGdGOXLN40KDa9G0M4p Commit 33ebc29 fixed the bugs in the implementation of VQRSHL, but forgot to remove the FIXME comment... Signed-off-by: Peter Maydell --- 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; \