1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* PR tree-optimization/121127 */ /* { dg-do compile { target bitint } } */ /* { dg-options "-O2 -w" } */ #if __BITINT_MAXWIDTH__ >= 576 _BitInt(575) foo (void) { _BitInt(576) d; _BitInt(575) e = d * 42wb; return e; } #else int i; #endif