From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id AE7D43858285; Wed, 7 Feb 2024 14:07:03 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AE7D43858285 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1707314823; bh=G8b2EDafhJ1EfbgCo9DJGvZPGQjp69VKi4QDJvlQg2g=; h=From:To:Subject:Date:From; b=jN4IN6K16C7JmtZvvDyu1yRs0/VXdRFkvWxX5NWY8jQrCt0NxuqyRjyYu6U+G/Rl2 R4eJIXzZBU3OEn7xxxU2+hRXGmrEciqS/f740UFPzrDd43oTvoJFm6R94Cj1pqLB9q 03n2TbEYAQbGPM+SX/RqR7dhC6RvJm+f8RxcyVBk= 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: 06c99e6273648fbec260bf9bb620547db90f445a X-Git-Newrev: 97fa106e90fdf226bbb9fc7bc8823e17146eed06 Message-Id: <20240207140703.AE7D43858285@sourceware.org> Date: Wed, 7 Feb 2024 14:07:03 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=97fa106e90fdf226bbb9fc7bc8823e17146eed06 commit 97fa106e90fdf226bbb9fc7bc8823e17146eed06 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 106b64f486..8c8eaddb51 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 {