From patchwork Fri Sep 10 09:11:04 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jie Zhang X-Patchwork-Id: 64357 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 12C6BB7115 for ; Fri, 10 Sep 2010 19:11:19 +1000 (EST) Received: (qmail 8714 invoked by alias); 10 Sep 2010 09:11:16 -0000 Received: (qmail 8701 invoked by uid 22791); 10 Sep 2010 09:11:15 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL, BAYES_00, TW_FC, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 10 Sep 2010 09:11:11 +0000 Received: (qmail 12754 invoked from network); 10 Sep 2010 09:11:09 -0000 Received: from unknown (HELO ?192.168.1.106?) (jie@127.0.0.2) by mail.codesourcery.com with ESMTPA; 10 Sep 2010 09:11:09 -0000 Message-ID: <4C89F628.5000300@codesourcery.com> Date: Fri, 10 Sep 2010 17:11:04 +0800 From: Jie Zhang User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100821 Icedove/3.1.2 MIME-Version: 1.0 To: gcc-patches@gcc.gnu.org Subject: [ARM] Fix type of cmpsf_trap_vfp X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org I think the type of cmpsf_trap_vfp should be fcmps instead of fcmpd. This patch fixes it. OK? * config/arm/vfp.md (cmpsf_trap_vfp): Change type from fcmpd to fcmps. Index: config/arm/vfp.md =================================================================== --- config/arm/vfp.md (revision 164143) +++ config/arm/vfp.md (working copy) @@ -1103,7 +1103,7 @@ (define_insn "*cmpsf_trap_vfp" fcmpes%?\\t%0, %1 fcmpezs%?\\t%0" [(set_attr "predicable" "yes") - (set_attr "type" "fcmpd")] + (set_attr "type" "fcmps")] ) (define_insn "*cmpdf_vfp"