Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.dg / lto / 20100518_0.c
blobc0e9c8be2f73f781bffa8b3e6f9e6dd19f9c0868
1 /* { dg-lto-do link } */
2 /* { dg-skip-if "" { ! { i?86-*-* x86_64-*-* } } { "*" } { "" } } */
3 /* Forgot to steam in/out the number of labels for asm goto. PR44184. */
5 extern int printf (__const char *__restrict __format, ...);
7 int x = 1;
8 int main ()
10 asm goto ("decl %0; jnz %l[a]" :: "m"(x) : "memory" : a);
11 printf ("Hello world\n");
13 return 0;