Fix file cache tunables documentation
[official-gcc.git] / gcc / testsuite / gcc.dg / bitint-48.c
blob8701ebb9b6edd01489c4e2d9e8b227d278736462
1 /* PR tree-optimization/112809 */
2 /* { dg-do compile { target bitint } } */
3 /* { dg-options "-O2" } */
5 #if __BITINT_MAXWIDTH__ >= 512
6 _BitInt (512) a;
7 _BitInt (256) b;
8 _BitInt (256) c;
10 int
11 foo (void)
13 return a == (b | c);
16 void
17 bar (void)
19 a /= b - 2;
21 #else
22 int i;
23 #endif