From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-4.0 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_EF,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 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 dcvr.yhbt.net (Postfix) with ESMTPS id 9928A1F45A for ; Wed, 14 Aug 2019 11:46:55 +0000 (UTC) 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:cc:subject:references:date:in-reply-to :message-id:mime-version:content-type; q=dns; s=default; b=fkH5Q OF/SH9nBLSndKJCla9CPlIwwqPd1ew4n3YIcwqe7PvmsZM+mcw4MMdWBFdUyj2TH RO9qXKnGBTPgwRCEJmkwwJOpfGlsTvuSzYMPKkXNTOmhvWaXv/ALFeYpRBSuTWeS EBVNQz7ISAxjP8297PptsV29XW84yLSkt4Fxys= 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:cc:subject:references:date:in-reply-to :message-id:mime-version:content-type; s=default; bh=Tggsa14y6R7 GkUmeACN/ZhZQ0Xg=; b=dkMW6xF4tkMsBm8ahGi4Jvlpc5B/T+vsEv9MCthJQbC TIwUEkvhr5v4WaDvdzkUxyMkuD5NuU5KpuNZPdztvNuiMQbrNVA9E6GGmhom8BhR vp4f1qRaqLRMe6F6lVzXRpRz//UIA+rPrndPoxuo+JI9EF1ZDtRh9T74ft6GIIPA = Received: (qmail 51057 invoked by alias); 14 Aug 2019 11:46:53 -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 Received: (qmail 51048 invoked by uid 89); 14 Aug 2019 11:46:53 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: mx1.redhat.com From: Florian Weimer To: "Gabriel F. T. Gomes" Cc: Subject: Re: [PATCH 1/6] ldbl-128ibm-compat: Add regular character printing functions References: <20190809183154.32605-1-gabriel@inconstante.net.br> <20190809183154.32605-2-gabriel@inconstante.net.br> Date: Wed, 14 Aug 2019 13:46:39 +0200 In-Reply-To: <20190809183154.32605-2-gabriel@inconstante.net.br> (Gabriel F. T. Gomes's message of "Fri, 9 Aug 2019 15:31:49 -0300") Message-ID: <87wofgdl5s.fsf@oldenburg2.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain * Gabriel F. T. Gomes: > diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/Makefile b/sysdeps/ieee754/ldbl-128ibm-compat/Makefile > index 412beb5b5c..102973add9 100644 > --- a/sysdeps/ieee754/ldbl-128ibm-compat/Makefile > +++ b/sysdeps/ieee754/ldbl-128ibm-compat/Makefile > +# The following rule ensures that the string conversion routines will > +# always be built in IBM long double mode, with additional support for > +# IEEE binary128, through the use of -mabi=ibmlongdouble and -mfloat128. > +ldbl-ibm128-files := $(objpfx)test-%-ibm128^ \ > + $(foreach r,$(ldbl-extra-routines),$(objpfx)$(r)^) \ > + $(foreach r,$(ldbl-extra-routines),$(objpfx)$(r)-internal^) > +obj-suf-foreach = $(foreach suf,$(all-object-suffixes),$(subst ^,$(suf),$(1))) Why isn't the assignment to obj-suf-foreach dead? Shouldn't this patch have abilist updates? Thanks, Florian