1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* PR tree-optimization/113462 */ /* { dg-do compile { target bitint } } */ /* { dg-options "-std=c23 -O2" } */ #if __BITINT_MAXWIDTH__ >= 129 typedef _BitInt(129) B; #else typedef _BitInt(63) B; #endif B foo (void) { struct { B b; } s = {}; return s.b; }