aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/20030906-2.c
blob: 1191133e6a06d9563d5e8f7dc2d09134f5725195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Bug 9862 -- Spurious warnings with -finline-functions.
   Copyright (C) 2003 Free Software Foundation Inc.  */

/* { dg-do compile } */
/* { dg-options "-O -finline-functions -Wreturn-type" } */

extern int i;
extern int foo (void);
extern int bar (void);

int foo (void)
{
  if( i ) return; /* { dg-warning "'return' with no value, in function returning non-void" } */
  else    return 1;
}

int bar (void)
{
  if( i ) return 0;
  else    return 1;
}