On Fri, Mar 06, 2026 at 12:26:05PM +0100, Robin Dapp wrote:
> gcc/testsuite/ChangeLog:
>
> * gcc.dg/torture/pr121649.c: New test.
> --- /dev/null
> +++ b/gcc/testsuite/gcc.dg/torture/pr121649.c
> @@ -0,0 +1,130 @@
> +/* { dg-do run { target bitint } } */
> +/* { dg-additional-options "-Wno-psabi" } */
The test uses __int128, so needs also to require int128
effective target.
Also, the test uses _BitInt up to 60692 bits, so needs
to have the functions and body of main guarded with
#if __BITINT_MAXWIDTH__ >= 60692
Jakub