From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id D7AB73861877; Thu, 21 Dec 2023 18:58:19 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D7AB73861877 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1703185099; bh=jYW8YRdf6c8uTYCG0N/qzFW6iN3mdhntD/EY/DlHbzg=; h=From:To:Subject:Date:From; b=D/GpDi6wXa/3aSkz0xfohMbav1fo1uNan+Z5i0nGsbRQCDkURTEcDLtkD2ZeFGg94 SMPA9hRwIOHPaq3T3u7Pdqp/s3eX2Ty7MrCrC5PG+oXZ2K1wwQpDLHLmRyx2Pcmesb yMcN22D8R4RENC3icKFIpiK3be0jTHVBtriVIrv8= 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] conform: Do not use __SIG_ATOMIC_TYPE__ X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/azanella/clang X-Git-Oldrev: 6e3d0c5bcc6c9d969e602a5dd7794ae9b4a43971 X-Git-Newrev: 141785920653a7b8682a165327b540b0acaeba71 Message-Id: <20231221185819.D7AB73861877@sourceware.org> Date: Thu, 21 Dec 2023 18:58:19 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=141785920653a7b8682a165327b540b0acaeba71 commit 141785920653a7b8682a165327b540b0acaeba71 Author: Adhemerval Zanella Date: Sun Apr 3 09:46:45 2022 -0300 conform: Do not use __SIG_ATOMIC_TYPE__ clang does not define __SIG_ATOMIC_TYPE__, instead add another directive ('size:') which instruct to use an interger type of defined minimum size. Diff: --- conform/conformtest.py | 4 ++++ conform/data/stdint.h-data | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/conform/conformtest.py b/conform/conformtest.py index e89fb19134..83ed6ec056 100644 --- a/conform/conformtest.py +++ b/conform/conformtest.py @@ -172,6 +172,10 @@ class ConstantTest(object): c_type = self.c_type[len('promoted:'):] text = ('__typeof__ ((%s) 0 + (%s) 0) a2_%d;\n' % (c_type, c_type, self.num)) + elif self.c_type.startswith('size:'): + c_type = "int{}_t".format(self.c_type[len('size:'):]) + text = ('__typeof__ ((%s) 0 + (%s) 0) a2_%d;\n' + % (c_type, c_type, self.num)) else: text = '__typeof__ ((%s) 0) a2_%d;\n' % (self.c_type, self.num) text += 'extern __typeof__ (%s) a2_%d;\n' % (self.symbol, self.num) diff --git a/conform/data/stdint.h-data b/conform/data/stdint.h-data index 4e84e17fb8..5d65d4ecd5 100644 --- a/conform/data/stdint.h-data +++ b/conform/data/stdint.h-data @@ -88,8 +88,8 @@ macro-int-constant UINTMAX_MAX {promoted:uintmax_t} >= 18446744073709551615ULL macro-int-constant PTRDIFF_MIN {promoted:__PTRDIFF_TYPE__} <= -65535 macro-int-constant PTRDIFF_MAX {promoted:__PTRDIFF_TYPE__} >= 65535 -macro-int-constant SIG_ATOMIC_MIN {promoted:__SIG_ATOMIC_TYPE__} -macro-int-constant SIG_ATOMIC_MAX {promoted:__SIG_ATOMIC_TYPE__} >= 127 +macro-int-constant SIG_ATOMIC_MIN {size:__SIG_ATOMIC_WIDTH__} +macro-int-constant SIG_ATOMIC_MAX {size:__SIG_ATOMIC_WIDTH__} >= 127 macro-int-constant SIZE_MAX {promoted:__SIZE_TYPE__} >= 65535