aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/lto/20080908_0.c
blob: 3bc1c3a725c53081f8f80e784e5eec3e91337ead (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-lto-do assemble } */
void foo(void) {
 char *bar;
 int baz;
 while (1)
   {
     if (baz)
       {
         baz = -baz;
         do
           *bar++ = 0;
         while (++baz);
       }
     ++baz;
   }
}