Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gcc.dg/20030906-2.c @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +0900 |
parents | 04ced10e8804 |
children |
line wrap: on
line source
/* 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; }