aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/bitint-47.c
blob: d5082ba415b3b546fb65946920082880831ef054 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR tree-optimization/112843 */
/* { dg-do compile { target bitint } } */
/* { dg-options "-O2" } */

#if __BITINT_MAXWIDTH__ >= 256
_BitInt (256)
foo (_BitInt (128) x, _BitInt (256) y)
{
  return x * 5 * y;
}
#else
int x;
#endif