libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / pr88594.c
blob6e3f2994056a73e470ae976e9eea8665696c3726
1 /* PR target/88594 */
2 /* { dg-do compile { target int128 } } */
3 /* { dg-options "-O2 -fno-tree-dominator-opts -fno-tree-forwprop -fno-tree-vrp" } */
5 __int128
6 foo (__int128 x, __int128 *y)
8 int a;
9 __int128 z, r;
10 for (a = 0; a < 17; ++a)
12 z = x / a;
13 r = x % a;
14 *y = z;
15 return r;