aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/bitint-64.c
blob: 0c7524c088b5c6903d41568a4e748d4ccc4178be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* PR tree-optimization/112734 */
/* { dg-do compile { target bitint } } */
/* { dg-options "-std=c23 -fnon-call-exceptions -ftrapv" } */

#if __BITINT_MAXWIDTH__ >= 128
_BitInt(128) out;
#else
int out;
#endif

int
main ()
{
  _BitInt(8) q[1];
  out -= 1;
}