From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 99703 invoked by alias); 5 Oct 2015 10:54:47 -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 99690 invoked by uid 89); 5 Oct 2015 10:54:47 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 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, 05 Oct 2015 10:54:46 +0000 Received: from cam-owa1.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.140]) by eu-smtp-1.mimecast.com with ESMTP id uk-mta-24-nm9DgdugRGelUTMCm6aN6A-1; Mon, 05 Oct 2015 11:54:41 +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, 5 Oct 2015 11:54:41 +0100 Message-ID: <561256F1.6090804@arm.com> Date: Mon, 05 Oct 2015 10:54: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: Christian Bruel , Bernhard Reutner-Fischer , Ramana Radhakrishnan CC: "gcc-patches@gcc.gnu.org" Subject: Re: [PATCH 1/4] [ARM] Add attribute/pragma target fpu= References: <55F69187.7020702@st.com> <84D96C45-DD45-4155-AF6C-97AAC3EFB155@gmail.com> <55F9365E.4050700@st.com> In-Reply-To: <55F9365E.4050700@st.com> X-MC-Unique: nm9DgdugRGelUTMCm6aN6A-1 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2015-10/txt/msg00386.txt.bz2 On 16/09/15 10:29, Christian Bruel wrote: > >> Maybe there is just dirt on my screen or my graphic-memory is broken, bu= t I see an odd character between iWMMXt and and? > Thanks Bernhard, > > Resent to remove this malicious sneaky ` character in the string error > message. > >> I keep forgetting if it's a capital W or a lowercase one but you'll know. >> Thanks, >> > I don't know. iWMMXt is also referenced with a capital W in the other > parts of the compiler. Let's go with what's in the compiler already. @@ -25678,23 +25679,14 @@ if (print_tune_info) arm_print_tune_info (); =20=20 - if (TARGET_SOFT_FLOAT) + if (! TARGET_SOFT_FLOAT && arm_fpu_desc->model =3D=3D ARM_FP_MODEL_V= FP) { Can use TARGET_VFP here? Ok with that change. Kyrill