2013-04-30 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr26983.c
blob5e2120a1ffe3363967bca72ddd805dd57f6c4030
1 /* { dg-do link } */
3 /* This used to cause a linker failure because GCC would output
4 assembler code referencing labels that it had not output. */
6 void *jmpbuf[6];
8 void
9 foo (void)
11 __builtin_setjmp (jmpbuf);
14 int
15 main (void)
17 return 0;