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=-3.9 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 798871F463 for ; Tue, 3 Dec 2019 16:58:53 +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:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-type:content-transfer-encoding; q=dns; s=default; b=ssgpTR4tOLOxhebtU3X93ysE0kNtCqYWfZC2Ql3uCc0 xA71EvSUzyiI+Yw4AP7FTYeHIa1syAMlvFnITJpem9GPOJ1C7AAur+h8r0Fq7apL e18pdclPkCl7o1Kl1JGi0hxVfWVN8x2vJpRNf90sImeEK3uhIxQLio7Fvm2s2xFc = 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:cc:subject:message-id:in-reply-to :references:mime-version:content-type:content-transfer-encoding; s=default; bh=ERJ5p7R7WLar30JWOWO14dmn3pQ=; b=pNhFj/avr3blLI7Lw 7pfwPpd53ZuHsKgL6ahawbRRMA9+FuKTf/ERuDfvApMDDoA3b7o0P8G9fhH1TnZw ti1kcQWtd75InYTfV/KFCDLjIrZVRyxJLADnpOT+lbNig1ThWcOsBSCwb6VM+6vN oDbCLGYCH2v/41fJJs8/zrOD6w= Received: (qmail 76120 invoked by alias); 3 Dec 2019 16:58:51 -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 76106 invoked by uid 89); 3 Dec 2019 16:58:51 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: smtpout1.mo803.mail-out.ovh.net Date: Tue, 3 Dec 2019 13:58:34 -0300 From: "Gabriel F. T. Gomes" To: Paul E Murphy CC: Subject: Re: [PATCH v2 18/30] ldbl-128ibm-compat: Add tests for strfroml, strtold, and wcstold Message-ID: <20191203135834.62aa53ae@tereshkova> In-Reply-To: <20191127144738.3f5b5086@tereshkova> References: <20191025153410.15405-1-gabriel@inconstante.net.br> <20191025153410.15405-19-gabriel@inconstante.net.br> <27a1e236-5146-2fc7-972b-5438a57c68f2@linux.ibm.com> <20191127144738.3f5b5086@tereshkova> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Ovh-Tracer-Id: 10684790118461853240 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: -100 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgedufedrudejjedgleehucetufdoteggodetrfdotffvucfrrhhofhhilhgvmecuqfggjfdqfffguegfifdpvefjgfevmfevgfenuceurghilhhouhhtmecuhedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmnecujfgurhepfffhvffukfgjfhfogggtgfhisehtjeertdertddvnecuhfhrohhmpedfifgrsghrihgvlhcuhfdrucfvrdcuifhomhgvshdfuceoghgrsghrihgvlhesihhntghonhhsthgrnhhtvgdrnhgvthdrsghrqeenucfkpheptddrtddrtddrtddpudejjedrudekrdduleekrddujeehnecurfgrrhgrmhepmhhouggvpehsmhhtphdqohhuthdphhgvlhhopefgigegrdgvmhhprdhlohgtrghlpdhinhgvtheptddrtddrtddrtddpmhgrihhlfhhrohhmpehgrggsrhhivghlsehinhgtohhnshhtrghnthgvrdgvthhirdgsrhdprhgtphhtthhopehlihgstgdqrghlphhhrgesshhouhhrtggvfigrrhgvrdhorhhgnecuvehluhhsthgvrhfuihiivgeptd On Wed, 27 Nov 2019, Gabriel F. T. Gomes wrote: >On Thu, 14 Nov 2019, Paul E Murphy wrote: > >>On 10/25/19 10:33 AM, Gabriel F. T. Gomes wrote: >>> >>> + if (read != (long double) -1) >> >>Trivial nit, any reason to avoid using -1.0L directly (likewise for >>test-wcstold-ldbl-compat.c)? > >No reason, really. I applied this suggestion locally (in both files). Now pushed with this change. Thanks.