From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20316 invoked by alias); 7 Dec 2012 19:07:01 -0000 Received: (qmail 20301 invoked by uid 22791); 7 Dec 2012 19:07:00 -0000 X-SWARE-Spam-Status: No, hits=-4.6 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,KHOP_RCVD_TRUST,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-qc0-f169.google.com (HELO mail-qc0-f169.google.com) (209.85.216.169) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 07 Dec 2012 19:06:56 +0000 Received: by mail-qc0-f169.google.com with SMTP id t2so471146qcq.0 for ; Fri, 07 Dec 2012 11:06:55 -0800 (PST) Received: by 10.224.39.83 with SMTP id f19mr11213843qae.76.1354907215615; Fri, 07 Dec 2012 11:06:55 -0800 (PST) Received: from pebble.twiddle.home.com ([201.120.20.251]) by mx.google.com with ESMTPS id 8sm2668954qed.6.2012.12.07.11.06.54 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 07 Dec 2012 11:06:55 -0800 (PST) From: Richard Henderson To: libc-ports@sourceware.org Subject: [COMMITTED] alpha: Fix redefinition of __isnanl macro warning Date: Fri, 07 Dec 2012 19:07:00 -0000 Message-Id: <1354907212-13667-1-git-send-email-rth@twiddle.net> X-IsSubscribed: yes Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org X-SW-Source: 2012-12/txt/msg00035.txt.bz2 In bdd7898a58bd76ac3b411a4931ff3f9e77eabe6a we added self-definitions of __isnan and friends in order to indicate specialized architecture support, and avoid redefinitions within various generic math_private.h. There is no generic math_private.h that concerns ldbl-128, and while we provide __isnanl in the alpha math_private.h there's no need to protect the function against redefinition. --- ports/ChangeLog.alpha | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ports/ChangeLog.alpha b/ports/ChangeLog.alpha index 21a4f12..9be0600 100644 --- a/ports/ChangeLog.alpha +++ b/ports/ChangeLog.alpha @@ -3,6 +3,8 @@ * sysdeps/alpha/Makefile [$(subdir) = math] (CFLAGS-s_isnan.c): New variable. + * sysdeps/alpha/fpu/math_private.h (__isnanl): Remove definition. + 2012-11-30 Richard Henderson * sysdeps/alpha/fpu/libm-test-ulps: Update. -- 1.7.11.7