From patchwork Tue Jan 8 14:25:47 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tejas Belagod X-Patchwork-Id: 210403 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 9BA002C0095 for ; Wed, 9 Jan 2013 01:26:53 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1358260013; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=9qB+015 30DGak+nC7ogvT9fd6Vk=; b=Fbf0ObqN/bo8eU85n0HSTwkDoKcbAxN8EAhX5ym 4XPyH7LHrDihakRh5V4WubNa9wrmh3vf/SATqn/ov11JrFyxxqze2oPTB9+hadfH Ltv+/3Rx7lsNWol1WjnfAhnCMHjeh7PUcDAOnZQmPyH5EEpGVm2gHS6xHVnMJNFu KuOM= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject:X-MC-Unique:Content-Type:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=Dc6ufFCtSO2gemxqTT4h2UlZcpSlRvo/bDT45ZqOX86rqkluzvFYAiGeFQKlVQ kEumx+OJUR1KhcVHy5wJSuc0jq/AXhgIAGo1ynzou3RfIU5HF7iJWTHDtdb3m1HL 3LimtNyvcrdgHvr3TNLwk525Os22hU73LlITxgZzd+TSY=; Received: (qmail 20717 invoked by alias); 8 Jan 2013 14:26:36 -0000 Received: (qmail 20696 invoked by uid 22791); 8 Jan 2013 14:26:34 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from service87.mimecast.com (HELO service87.mimecast.com) (91.220.42.44) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 08 Jan 2013 14:26:28 +0000 Received: from cam-owa1.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.21]) by service87.mimecast.com; Tue, 08 Jan 2013 14:25:48 +0000 Received: from [10.1.79.66] ([10.1.255.212]) by cam-owa1.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.0); Tue, 8 Jan 2013 14:25:47 +0000 Message-ID: <50EC2C6B.1020508@arm.com> Date: Tue, 08 Jan 2013 14:25:47 +0000 From: Tejas Belagod User-Agent: Thunderbird 2.0.0.18 (X11/20081120) MIME-Version: 1.0 To: "gcc-patches@gcc.gnu.org" CC: Marcus Shawcroft Subject: [Patch, AArch64]: Fix format of mull instruction. X-MC-Unique: 113010814254802501 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 Hi, Attached is a patch that fixes the instruction and operand separator for mull<2> instructions from a space to a tab. Regressed for aarch64-none-elf on trunk. OK to commit? Thanks, Tejas Belagod ARM. 2013-01-08 Tejas Belagod gcc/ * config/aarch64/aarch64-simd.md (aarch64_simd_vec_mult_lo_, aarch64_simd_vec_mult_hi_): Separate instruction and operand with tab instead of space. diff --git a/gcc/config/aarch64/aarch64-simd.md b/gcc/config/aarch64/aarch64-simd.md index febf71d..01348ec 100644 --- a/gcc/config/aarch64/aarch64-simd.md +++ b/gcc/config/aarch64/aarch64-simd.md @@ -1100,7 +1100,7 @@ (match_operand:VQW 2 "register_operand" "w") (match_dup 3)))))] "TARGET_SIMD" - "mull %0., %1., %2." + "mull\\t%0., %1., %2." [(set_attr "simd_type" "simd_mull") (set_attr "simd_mode" "")] ) @@ -1128,7 +1128,7 @@ (match_operand:VQW 2 "register_operand" "w") (match_dup 3)))))] "TARGET_SIMD" - "mull2 %0., %1., %2." + "mull2\\t%0., %1., %2." [(set_attr "simd_type" "simd_mull") (set_attr "simd_mode" "")] )