PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / pr33648.c
blobf5da55cd47cee2221bc3b0d9a8a480744e3b2203
1 /* PR rtl-optimization/33648 */
2 /* { dg-do compile } */
3 /* { dg-require-effective-target freorder } */
4 /* { dg-options "-O2 -fmodulo-sched -freorder-blocks-and-partition" } */
6 unsigned res;
8 void
9 foo (unsigned code, int len)
11 int i;
12 for (i = 0; i < len; i++)
13 res |= code & 1;