From patchwork Mon Oct 9 16:53:29 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 823362 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-85559-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="jKHvRmn3"; dkim-atps=neutral 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 3y9mXn4tfCz9sxR for ; Tue, 10 Oct 2017 03:53:45 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; q=dns; s=default; b=Ld9SWj7bNDnEhgr7giZqrXurrbaQU I9B7ofUeZECmbpPkvf6mmmdGtZY87IV68cyimw68oIFU5rFbM05beO3Sfufs13ty H1yRwfR1lv10lop0HMRAPAybguu2/PNI8EZL7BwqrFkb0zKeENwzwrcnwLNFtSpF DXeG5UgIH4KMr8= 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:date:from:to:subject:message-id:mime-version :content-type; s=default; bh=XNlzcbRn++IL1GnP8/J4BFS4Gh8=; b=jKH vRmn3u9U6p3tAdTS/sZqTBu2QIC5zMJzCRxLFOtJqk3GHscF3g79Wx44fTaTBFn7 U2LkHQh0KuqSHQh4n8tFuO6HmdkHRcoYIGTl4zMnx1y2242KF3oQRgHkuPdW9Tj9 XmJV/em3ghznqHBkCI1LOnZW/TIQ157UMrHmSf/g= Received: (qmail 86188 invoked by alias); 9 Oct 2017 16:53:39 -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 85369 invoked by uid 89); 9 Oct 2017 16:53:39 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.5 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS, URIBL_RED autolearn=ham version=3.3.2 spammy=Hx-languages-length:895, H*MI:3988 X-HELO: relay1.mentorg.com Date: Mon, 9 Oct 2017 16:53:29 +0000 From: Joseph Myers To: Subject: Remove ldbl-opt w_scalbln.c [committed] Message-ID: User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 X-ClientProxiedBy: svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) To svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) The ldbl-opt version of w_scalbln.c is not in fact needed; it handles compat symbol versions for libc, but this file isn't built for libc, only for libm. This patch removes this file. Tested with build-many-glibcs.py that installed stripped shared libraries are unchanged by this patch. Committed. 2017-10-09 Joseph Myers * sysdeps/ieee754/ldbl-opt/w_scalbln.c: Remove file. diff --git a/sysdeps/ieee754/ldbl-opt/w_scalbln.c b/sysdeps/ieee754/ldbl-opt/w_scalbln.c deleted file mode 100644 index 17a8a96..0000000 --- a/sysdeps/ieee754/ldbl-opt/w_scalbln.c +++ /dev/null @@ -1,5 +0,0 @@ -#include -#include -#if IS_IN (libc) && LONG_DOUBLE_COMPAT (libc, GLIBC_2_1) -compat_symbol (libc, __w_scalbln, scalblnl, GLIBC_2_1); -#endif