aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/noreturn-2.c
blob: 4214de3144454655ff53407ac68ddbbb75eb558f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Check for invalid "noreturn" warning. */
/* { dg-do compile } */
/* { dg-options "-O3 -Wall" } */
extern void abort (void) __attribute__ ((__noreturn__));

void noreturn (int x) __attribute__ ((__noreturn__));

void
noreturn (int x)
{
  abort ();
} /* { dg-bogus "does return" "noreturn does return" } */