libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr114312.c
blobc508c64ed1991598e59ca2271af1ae5908a07e72
1 /* { dg-do compile } */
2 /* { dg-require-effective-target bitint } */
4 #if __BITINT_MAXWIDTH__ >= 129
5 typedef _BitInt(129) B;
6 B b;
9 foo(void)
11 _BitInt(64) a = 1;
12 a &= b * b;
13 return b << a;
15 #endif