From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 62538 invoked by alias); 1 Jun 2015 09:14:38 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 62525 invoked by uid 89); 1 Jun 2015 09:14:38 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,SPF_PASS autolearn=ham version=3.3.2 X-HELO: eu-smtp-delivery-143.mimecast.com Received: from eu-smtp-delivery-143.mimecast.com (HELO eu-smtp-delivery-143.mimecast.com) (207.82.80.143) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 01 Jun 2015 09:14:36 +0000 Received: from cam-owa1.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.140]) by uk-mta-18.uk.mimecast.lan; Mon, 01 Jun 2015 10:11:59 +0100 Received: from [10.2.207.50] ([10.1.2.79]) by cam-owa1.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.3959); Mon, 1 Jun 2015 10:11:59 +0100 Message-ID: <556C21DF.2070307@arm.com> Date: Mon, 01 Jun 2015 09:14:00 -0000 From: Kyrill Tkachov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: GCC Patches Subject: [PATCH][AArch64] Fix type of *_one_cmpl_3 pattern X-MC-Unique: lKSXjtx9SEmEj2QFhfAfuQ-1 Content-Type: multipart/mixed; boundary="------------040005090504060803030401" X-IsSubscribed: yes X-SW-Source: 2015-06/txt/msg00020.txt.bz2 This is a multi-part message in MIME format. --------------040005090504060803030401 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Content-length: 435 Hi all, The *_one_cmpl_3 pattern doesn't set the = condition flags so it's type should be logic_shift_imm rather than logics_shift_imm. Bootstrapped and tested on aarch64. Committed as obvious with r223922. Thanks, Kyrill 2015-06-01 Kyrylo Tkachov * config/aarch64/aarch64.md (*_one_cmpl_3): Change type to logic_shift_imm. --------------040005090504060803030401 Content-Type: text/x-patch; name=aarch64-logic-type.patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="aarch64-logic-type.patch" Content-length: 753 commit cb4407d5014e3eb5e35646c7de241e976738e347 Author: Kyrylo Tkachov Date: Mon Mar 2 15:29:45 2015 +0000 [AArch64] Fix type of *_one_cmpl_3 pa= ttern diff --git a/gcc/config/aarch64/aarch64.md b/gcc/config/aarch64/aarch64.md index 4817fae..bbb4812 100644 --- a/gcc/config/aarch64/aarch64.md +++ b/gcc/config/aarch64/aarch64.md @@ -3139,7 +3139,7 @@ (define_insn "*_one_cmpl_= 3" (match_operand:GPI 3 "register_operand" "r")))] "" "\\t%0, %3, %1, %2" - [(set_attr "type" "logics_shift_imm")] + [(set_attr "type" "logic_shift_imm")] ) =20 (define_insn "*eor_one_cmpl_3_alt" --------------040005090504060803030401--