From patchwork Sat Sep 10 10:22:05 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Siddhesh Poyarekar X-Patchwork-Id: 668359 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 3sWVXl2NkKz9ssP for ; Sat, 10 Sep 2016 20:23:51 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b=NdGJRAS/; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id; q=dns; s= default; b=uzcx07w9PtCDRoKBJEk4jWRfVbnQyRuOr+NaRnYeYZdfd695YE54X ymSPp6cZXyhIXw0LfEIqBqofSXyg29bDw+kAhWe3z7rNMA2Tj0a3PC+iBcrockjB 6pqpC9yVA8oTDkf+9Dxv2UMlVXmGQVKwLGNFXqzgEViBX7zwJxaHLk= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id; s=default; bh=FPVPks7nNEzPwS7dJqopYheaVQw=; b=NdGJRAS/UFlf6vA8rQ5ODsvFbCWG Io2VU0tVrGZ6SUtiEHgyPX8vBJqL9HAPveu/caOKVlE+w1zY5aFyWey//FzUB0M0 485TM+lXHFXJheSr5T0Vaa+POsnCf1MX2PTZi4E9DN6nr1Zt+0YH02UZMy4QBYAH 5KEXiSs12QkVrz8= Received: (qmail 56310 invoked by alias); 10 Sep 2016 10:23:44 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 56296 invoked by uid 89); 10 Sep 2016 10:23:43 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=1.6 required=5.0 tests=BAYES_50, RCVD_IN_DNSWL_NONE, SPF_NEUTRAL, URIBL_RED autolearn=no version=3.3.2 spammy=libc-start, poyarekar, siddheshsourcewareorg, **envp X-HELO: homiemail-a46.g.dreamhost.com From: Siddhesh Poyarekar To: libc-alpha@sourceware.org Subject: [COMMITTED][PATCH] Remove __libc_csu_irel declaration Date: Sat, 10 Sep 2016 15:52:05 +0530 Message-Id: <1473502925-3244-1-git-send-email-siddhesh@sourceware.org> 21ad055803de5dd03606588753c46fbf8a5863b2 removed the function, but missed the declaration in libc-start. Removed and verified that the generated assembly is unchanged. * csu/libc-start.c (__libc_csu_irel): Remove declaration. --- ChangeLog | 4 ++++ csu/libc-start.c | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index af5fe63..607508d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2016-09-10 Siddhesh Poyarekar + + * csu/libc-start.c (__libc_csu_irel): Remove declaration. + 2016-09-07 Joseph Myers * sysdeps/powerpc/powerpc32/e500/nofpu/fetestexceptflag.c: New diff --git a/csu/libc-start.c b/csu/libc-start.c index f4aa01a..99c040a 100644 --- a/csu/libc-start.c +++ b/csu/libc-start.c @@ -23,9 +23,6 @@ #include extern void __libc_init_first (int argc, char **argv, char **envp); -#ifndef SHARED -extern void __libc_csu_irel (void); -#endif extern int __libc_multiple_libcs;