From patchwork Tue Nov 25 03:44:49 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Segher Boessenkool X-Patchwork-Id: 414211 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 EE534140188 for ; Tue, 25 Nov 2014 14:45:08 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id; q=dns; s=default; b=XvoJDUEQFQL+ vAHlUq9hoWfZIipSFGr81jHBvkexJWeEz4z5199Bxr/ZafLUG78rRRWAZkH4etm/ gRygHuamkWftOf9bM7klpLFbzMAZimBO4BmSX1bEdQ4cIW8ecKz7Qbfl8e3t8vFe NfEjqiYO9N8LbGmuiiBCyL36kDHaDR0= 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:from :to:cc:subject:date:message-id; s=default; bh=wimtLSh1tOf9aH5oaS DYs8yn2WA=; b=ntg+XPkeJAy8O/IRJdoKx4i8RKFDLJyJIGJ8ZXGycwnUoLjV6p T9Bgz6qSApwBJvRtSKHuGbx/+y1ZZ+uBOOZdubOarME98EvUyFEnFBrIzUThMeXh Oed1xqHxuf+qoGDjsCMhMjRbyi6ewkjhQFI5PXi9TFTYyRqKV6PEB95o0= Received: (qmail 25695 invoked by alias); 25 Nov 2014 03:45:01 -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 25680 invoked by uid 89); 25 Nov 2014 03:44:59 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL, BAYES_00, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: gcc1-power7.osuosl.org Received: from gcc1-power7.osuosl.org (HELO gcc1-power7.osuosl.org) (140.211.15.137) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 25 Nov 2014 03:44:58 +0000 Received: from gcc1-power7.osuosl.org (localhost [127.0.0.1]) by gcc1-power7.osuosl.org (8.14.6/8.14.6) with ESMTP id sAP3isJP065024; Mon, 24 Nov 2014 19:44:54 -0800 Received: (from segher@localhost) by gcc1-power7.osuosl.org (8.14.6/8.14.6/Submit) id sAP3iqUK064611; Mon, 24 Nov 2014 19:44:52 -0800 From: Segher Boessenkool To: gcc-patches@gcc.gnu.org Cc: Segher Boessenkool Subject: [PATCH] crtstuff: Add missing semicolon Date: Mon, 24 Nov 2014 19:44:49 -0800 Message-Id: <57a7d0ddca3f584826c6463ccd0e98cef0ed7711.1416886725.git.segher@kernel.crashing.org> X-IsSubscribed: yes I wonder how this survived so long, I must be building some strange configs (it failed on an avr cross). Okay for trunk? Segher 2014-11-24 Segher Boessenkool libgcc/ * crtstuff.c (__do_glbal_ctors_1): Add missing semicolon. --- libgcc/crtstuff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgcc/crtstuff.c b/libgcc/crtstuff.c index 03a30fe..62a4b42 100644 --- a/libgcc/crtstuff.c +++ b/libgcc/crtstuff.c @@ -582,7 +582,7 @@ __do_global_ctors_1(void) #endif #ifdef __LIBGCC_JCR_SECTION_NAME__ - void **jcr_list + void **jcr_list; __asm ("" : "=g" (jcr_list) : "0" (__JCR_LIST__)); if (__builtin_expect (*jcr_list != NULL, 0)) {