blob: c508c64ed1991598e59ca2271af1ae5908a07e72 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-effective-target bitint } */
#if __BITINT_MAXWIDTH__ >= 129
typedef _BitInt(129) B;
B b;
B
foo(void)
{
_BitInt(64) a = 1;
a &= b * b;
return b << a;
}
#endif