OSDN Git Service

PR rtl-optimization/33648
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr33648.c
1 /* PR rtl-optimization/33648 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -fmodulo-sched -freorder-blocks-and-partition" } */
4
5 unsigned res;
6
7 void
8 foo (unsigned code, int len)
9 {
10   int i;
11   for (i = 0; i < len; i++)
12     res |= code & 1;
13 }