Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.dg / lto / 20100518_0.c
blob02290b5feb2ec3ffa9ea539d82fe3b3923ab5acb
1 /* { dg-lto-do link } */
2 /* Forgot to steam in/out the number of labels for asm goto. PR44184. */
4 extern int printf (__const char *__restrict __format, ...);
6 int x = 1;
7 int main ()
9 asm goto ("decl %0; jnz %l[a]" :: "m"(x) : "memory" : a);
10 printf ("Hello world\n");
12 return 0;