Re: [PATCH 3/3] arm: Add support for _BitInt(N)

2025-10-02 Thread Jakub Jelinek
On Thu, Sep 25, 2025 at 10:23:46AM +0100, Andre Vieira wrote: > +/* Implement TARGET_C_BITINT_TYPE_INFO > + Return true if _BitInt(N) is supported and fill its details into *INFO. > */ > + > +bool > +arm_bitint_type_info (int n, struct bitint_info *info) > +{ > + if (TARGET_BIG_END) > +ret

[PATCH 3/3] arm: Add support for _BitInt(N)

2025-09-26 Thread Andre Vieira
--- gcc/config/arm/arm-protos.h| 1 + gcc/config/arm/arm.cc | 43 -- libgcc/config/arm/libgcc-bpabi.ver | 8 ++ libgcc/config/arm/t-softfp | 2 ++ 4 files changed, 52 insertions(+), 2 deletions(-) diff --git a/gcc/config/arm/arm-prot