From patchwork Tue Oct 21 22:38:30 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 3313 Received: (qmail 23474 invoked by alias); 21 Oct 2014 22:38:38 -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 23464 invoked by uid 89); 21 Oct 2014 22:38:37 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 X-HELO: relay1.mentorg.com Date: Tue, 21 Oct 2014 22:38:30 +0000 From: "Joseph S. Myers" To: Subject: Don't use INTDEF with __ldexpf (bug 14132) Message-ID: MIME-Version: 1.0 Continuing the removal of the obsolete INTDEF / INTUSE mechanism, this patch removes the use of INTDEF for __ldexpf. As far as I can tell, the resulting alias is completely unused. Tested for x86_64 that stripped installed shared libraries are unchanged by this patch. 2014-10-21 Joseph Myers [BZ #14132] * math/s_ldexpf.c (__ldexpf): Do not use INTDEF. diff --git a/math/s_ldexpf.c b/math/s_ldexpf.c index b105e29..bd94677 100644 --- a/math/s_ldexpf.c +++ b/math/s_ldexpf.c @@ -28,5 +28,4 @@ float __ldexpf(float value, int exp) if(!__finitef(value)||value==(float)0.0) __set_errno (ERANGE); return value; } -INTDEF(__ldexpf) weak_alias (__ldexpf, ldexpf)