blob: ae6730c50b0ca2d86867212c8e75d224f45793cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* PR middle-end/42674 */
/* { dg-do compile } */
/* { dg-options "-Wreturn-type" } */
extern void bar (void);
static int foo (void) __attribute__ ((__noreturn__, __used__));
static int
foo (void)
{
while (1)
bar ();
}
|