From patchwork Tue Sep 26 23:05:07 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "H.J. Lu" X-Patchwork-Id: 23167 Received: (qmail 30169 invoked by alias); 26 Sep 2017 23:05:19 -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 30151 invoked by uid 89); 26 Sep 2017 23:05:18 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.4 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, RCVD_IN_SORBS_SPAM, SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mail-it0-f47.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-disposition:user-agent; bh=yzy9Qgk5XGiadcUNbb3KsYx6BDXX0FJmONgj4w0HBUQ=; b=XoQ53M9CBIuozupsDPaKCA8mHfaSk+bZt9sl85XnAnfiMLiWEMKgHDXPqgLIMjTaXp rVRSE91Ekki1CacN6FbYLeXj/4qC+Yyc6WVCBM0T8Rui3tSA7ytl6xzFVo5/Ihs9Viqm eqC0Foz0qDVBO4J9OTLWWOZiapUFQDsiHXhjOPEZxmf1GHU9D3PVUg532agqrA6AkTp9 z7VU/xCY6lJ5bo6GuKg9+muxoe3JZyJ0S2Kv0Htev/IaX4+yjHURdp6NRDJS062STFGP YYcza3MbQNC8B7qfihHPuw9wce271GXnu4Qa4zkmmnEPLsl7aDfckpkE9O61hkvmRFrD wXjw== X-Gm-Message-State: AHPjjUitgfJ1aRsg8vyFn3cnL/H1WDME/8yh/NamB/dJsSVZbnIasOMc hAkvpVkYGZ8X2hxXZgyvcfwRvxAK X-Google-Smtp-Source: AOwi7QB1jyC4TZmM5AZDfADIb/vYfyYxufPQXmG9XR5vRQ2a8yZRHrIwyoLXc8cXBfUQRpON5/RKOg== X-Received: by 10.36.16.130 with SMTP id 124mr8884335ity.105.1506467115657; Tue, 26 Sep 2017 16:05:15 -0700 (PDT) Date: Tue, 26 Sep 2017 16:05:07 -0700 From: "H.J. Lu" To: GNU C Library , Szabolcs Nagy Subject: [nsz/math2, PATCH] e_exp2f.c: Support multiarch Message-ID: <20170926230507.GA20101@gmail.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.8.3 (2017-05-23) This is for nsz/math2 branch. This is to support compiling e_exp2f.c more than once for multiarch. * sysdeps/ieee754/flt-32/e_exp2f.c [__exp2f] (__ieee754_exp2f, __exp2f_finite, exp2f): Skip. --- sysdeps/ieee754/flt-32/e_exp2f.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sysdeps/ieee754/flt-32/e_exp2f.c b/sysdeps/ieee754/flt-32/e_exp2f.c index b53a919a0d..e54a88f692 100644 --- a/sysdeps/ieee754/flt-32/e_exp2f.c +++ b/sysdeps/ieee754/flt-32/e_exp2f.c @@ -86,6 +86,9 @@ __exp2f (float x) y = y * s; return (float) y; } + +#ifndef __exp2f strong_alias (__exp2f, __ieee754_exp2f) strong_alias (__exp2f, __exp2f_finite) versioned_symbol (libm, __exp2f, exp2f, GLIBC_2_27); +#endif