OSDN Git Service

2011-10-19 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / torture / pr46068.c
1 /* { dg-do compile } */
2
3 void
4 foo ()
5 {
6   asm goto (""::::l1);
7   __builtin_unreachable ();
8 l1:;
9 }
10
11 void
12 bar ()
13 {
14   foo ();
15   foo ();
16 }