Fix broken MinGW build of gcc.c
[official-gcc.git] / gcc / testsuite / gcc.dg / lto / 20100518_0.c
blobcf19a50550cf28da26b8a6f570a47def902c02d4
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;