aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/bitint-125.c
blob: 5ef0e327d54f67e587fdd7b5189cf3a92e6eed3b (plain)
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