From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id C8FDB3858427; Thu, 21 Dec 2023 18:53:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C8FDB3858427 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1703184830; bh=/gm+oFAzweXbXY/aOrE09tAyOyeSMZKLhocaDj9bzYo=; h=From:To:Subject:Date:From; b=daJ3JGslsoGAmkxP3oP4FO71qY90ENj0QIq9V618JkgaqHU05PEWE/RXOvuiidK1W Uf7QJhr/TF5by+Id1oosVZ/kGeS8uZdowsTebxrV3XtxVVxEuzEmHuWa3m32oB5nyk nzggy63Cl71+orUefJF+mqQnqSetuTo4xcYv/1hE= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Adhemerval Zanella To: glibc-cvs@sourceware.org Subject: [glibc/azanella/clang] support: Handle clang support/dtotimespec.c on dtotimespec X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/azanella/clang X-Git-Oldrev: bc65bf740f9de6e9ffa377c51b39b445456113a9 X-Git-Newrev: 5ccb36999ec1e9b356c67d0ad069a983ded138b1 Message-Id: <20231221185350.C8FDB3858427@sourceware.org> Date: Thu, 21 Dec 2023 18:53:50 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=5ccb36999ec1e9b356c67d0ad069a983ded138b1 commit 5ccb36999ec1e9b356c67d0ad069a983ded138b1 Author: Adhemerval Zanella Date: Mon Mar 20 16:20:48 2023 -0300 support: Handle clang support/dtotimespec.c on dtotimespec clang issues: dtotimespec.c:31:25: error: implicit conversion from 'time_t' (aka 'long') to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Werror,-Wimplicit-const-int-float-conversion] else if (sec >= 1.0 + TYPE_MAXIMUM (time_t)) ~ ^~~~~~~~~~~~~~~~~~~~~ ../include/intprops.h:57:4: note: expanded from macro 'TYPE_MAXIMUM' ((t) (! TYPE_SIGNED (t) \ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ So explicit cast it to double. Diff: --- support/dtotimespec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/dtotimespec.c b/support/dtotimespec.c index cde5b4d74c..45fa3a3e7f 100644 --- a/support/dtotimespec.c +++ b/support/dtotimespec.c @@ -28,7 +28,7 @@ dtotimespec (double sec) { if (sec <= TYPE_MINIMUM (time_t)) return make_timespec (TYPE_MINIMUM (time_t), 0); - else if (sec >= 1.0 + TYPE_MAXIMUM (time_t)) + else if (sec >= 1.0 + (double) TYPE_MAXIMUM (time_t)) return make_timespec (TYPE_MAXIMUM (time_t), TIMESPEC_HZ - 1); else {