]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr51762.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr51762.c
CommitLineData
f8f75b16
JJ
1/* PR debug/51762 */
2/* { dg-do compile } */
3/* { dg-options "-g -Os -fomit-frame-pointer -fno-asynchronous-unwind-tables" } */
4
5void noret (void) __attribute__ ((noreturn));
6int bar (void);
7void baz (const char *);
8static int v = -1;
9
10void
11foo (void)
12{
13 if (bar () && v == -1)
14 {
15 baz ("baz");
16 noret ();
17 }
18 noret ();
19}