From patchwork Fri Feb 14 08:08:16 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chung-Ju Wu X-Patchwork-Id: 320306 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]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 7E0A52C0079 for ; Fri, 14 Feb 2014 19:08:28 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:date:message-id:subject:from:to:content-type; q= dns; s=default; b=IURsquCfKyn0rNC8Ahoc4+LaEkNBbvW70rm7ang4plUmbs yuDLEA+qcfCgxZsxhvYh+wiPO6HXsFAm6AJMuLma9Z3Xr+VOtU9j5Z1264JgErD8 uWjMshcMUU7eTvAFJ8IMpQsoVKchRtpB2yWoiXWzZT0scQaNLaSr0hRdNzKbE= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:date:message-id:subject:from:to:content-type; s= default; bh=4FG/pVMarUfeedz+wzUa2zq6tq8=; b=tlF1859BMxgLEfZl3hW0 jNTSPi1svDsmlpLzbsyHvbh9EysvOufxORIBi4kaBlpSdNVQpB/TG+2/nXTLiQb5 2xCynmylc0g4Txsnj2V81q67iejWYPmRKjbfIiVM3+GaPab8n4QOIeLbE4zajFp4 S2bBTZCAWiSlw1XrQkmTuJ0= Received: (qmail 26514 invoked by alias); 14 Feb 2014 08:08:20 -0000 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 Received: (qmail 26502 invoked by uid 89); 14 Feb 2014 08:08:20 -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, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-qc0-f181.google.com Received: from mail-qc0-f181.google.com (HELO mail-qc0-f181.google.com) (209.85.216.181) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Fri, 14 Feb 2014 08:08:19 +0000 Received: by mail-qc0-f181.google.com with SMTP id e9so19436031qcy.40 for ; Fri, 14 Feb 2014 00:08:17 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.140.100.181 with SMTP id s50mr9793553qge.113.1392365297086; Fri, 14 Feb 2014 00:08:17 -0800 (PST) Received: by 10.140.93.82 with HTTP; Fri, 14 Feb 2014 00:08:16 -0800 (PST) Date: Fri, 14 Feb 2014 16:08:16 +0800 Message-ID: Subject: [PATCH, nds32] Committed: Minor adjustment to follow GNU coding standards. From: Chung-Ju Wu To: gcc patches X-IsSubscribed: yes Hi, In the gcc/config/nds32/nds32.c, there is one function definition which does not follow GNU coding standards: http://www.gnu.org/prep/standards/standards.html Section "5.1 Formatting Your Source Code" For a function definition, its function name should start in column one. Fixed it as obvious, committed as Rev.207774. Best regards, jasonwucj Index: gcc/ChangeLog =================================================================== --- gcc/ChangeLog (revision 207773) +++ gcc/ChangeLog (revision 207774) @@ -1,3 +1,8 @@ +2014-02-14 Chung-Ju Wu + + * config/nds32/nds32.c (nds32_naked_function_p): Follow the + GNU coding standards. + 2014-02-13 Jakub Jelinek PR debug/60152 Index: gcc/config/nds32/nds32.c =================================================================== --- gcc/config/nds32/nds32.c (revision 207773) +++ gcc/config/nds32/nds32.c (revision 207774) @@ -1445,7 +1445,8 @@ } /* Return true if FUNC is a naked function. */ -static bool nds32_naked_function_p (tree func) +static bool +nds32_naked_function_p (tree func) { tree t;