From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 36186 invoked by alias); 4 Feb 2016 09:09:00 -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 36168 invoked by uid 89); 4 Feb 2016 09:08:59 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=1.1 required=5.0 tests=BAYES_40,KAM_ASCII_DIVIDERS,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 spammy=HX-Envelope-From:sk:christi, armcc, H*RU:8.3.389.2, H*r:ip*8.3.389.2 X-HELO: mx07-00178001.pphosted.com Received: from mx08-00178001.pphosted.com (HELO mx07-00178001.pphosted.com) (91.207.212.93) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 04 Feb 2016 09:08:58 +0000 Received: from pps.filterd (m0046660.ppops.net [127.0.0.1]) by mx08-00178001.pphosted.com (8.15.0.59/8.15.0.59) with SMTP id u1494GMj026235 for ; Thu, 4 Feb 2016 10:08:55 +0100 Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by mx08-00178001.pphosted.com with ESMTP id 20rk69twa7-1 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Thu, 04 Feb 2016 10:08:55 +0100 Received: from zeta.dmz-eu.st.com (zeta.dmz-eu.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 5731731 for ; Thu, 4 Feb 2016 09:08:03 +0000 (GMT) Received: from Webmail-eu.st.com (safex1hubcas4.st.com [10.75.90.69]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id D3C60E47 for ; Thu, 4 Feb 2016 09:08:53 +0000 (GMT) Received: from [164.129.122.197] (164.129.122.197) by webmail-eu.st.com (10.75.90.13) with Microsoft SMTP Server (TLS) id 8.3.389.2; Thu, 4 Feb 2016 10:08:53 +0100 To: From: Christian Bruel Subject: [obvious, ARM] Fix typos. X-No-Archive: yes Message-ID: <56B31525.1020705@st.com> Date: Thu, 04 Feb 2016 09:09:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.5.1 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------080008020201040603010200" X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2016-02-04_01:,, signatures=0 X-IsSubscribed: yes X-SW-Source: 2016-02/txt/msg00275.txt.bz2 --------------080008020201040603010200 Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Content-length: 46 Committed as obvious style typos of mine. --------------080008020201040603010200 Content-Type: text/x-patch; name="ob.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="ob.patch" Content-length: 2233 2016-02-04 Christian Bruel * config/arm/arm-c.c (arm_reset_previous_fndecl): Coding style fix. * config/arm/arm.c (arm_set_current_function): Likewise. Index: arm-c.c =================================================================== --- arm-c.c (revision 233126) +++ arm-c.c (working copy) @@ -195,6 +195,7 @@ arm_cpu_cpp_builtins (struct cpp_reader * pfile) /* Hook to validate the current #pragma GCC target and set the arch custom mode state. If ARGS is NULL, then POP_TARGET is used to reset the options. */ + static bool arm_pragma_target_parse (tree args, tree pop_target) { @@ -243,7 +244,7 @@ arm_pragma_target_parse (tree args, tree pop_targe /* Don't warn for macros that have context sensitive values depending on other attributes. - See warn_of_redefinition, Reset after cpp_create_definition. */ + See warn_of_redefinition, reset after cpp_create_definition. */ tree acond_macro = get_identifier ("__ARM_NEON_FP"); C_CPP_HASHNODE (acond_macro)->flags |= NODE_CONDITIONAL ; @@ -267,7 +268,6 @@ arm_pragma_target_parse (tree args, tree pop_targe function basis in arm_set_current_function. */ if (cur_tree == target_option_default_node) save_restore_target_globals (cur_tree); - } return true; Index: arm.c =================================================================== --- arm.c (revision 233126) +++ arm.c (working copy) @@ -29769,6 +29769,7 @@ save_restore_target_globals (tree new_tree) } /* Invalidate arm_previous_fndecl. */ + void arm_reset_previous_fndecl (void) { @@ -29778,6 +29779,7 @@ arm_reset_previous_fndecl (void) /* Establish appropriate back-end context for processing the function FNDECL. The argument might be NULL to indicate processing at top level, outside of any function scope. */ + static void arm_set_current_function (tree fndecl) { @@ -29791,7 +29793,7 @@ arm_set_current_function (tree fndecl) tree new_tree = DECL_FUNCTION_SPECIFIC_TARGET (fndecl); /* If current function has no attributes but previous one did, - use the default node." */ + use the default node. */ if (! new_tree && old_tree) new_tree = target_option_default_node; --------------080008020201040603010200--