svn merge -r108665:108708 svn+ssh://gcc.gnu.org/svn/gcc/trunk
[official-gcc.git] / gcc / testsuite / gcc.dg / 20031012-1.c
blobcdfed68e09a92f6d2f680e5682c789aa00b5ea5c
1 /* { dg-options "-Walways-true" } */
2 /* Origin: Andrew Morton <akpm@osdl.org> */
3 /* Warn if a function addres of a non-weak function is used
4 as a truth value. */
5 /* See thread starting at http://gcc.gnu.org/ml/gcc/2003-10/msg00414.html */
7 void foo(void)
8 {}
10 void bar(void)
13 int main() {
14 if (foo) /* { dg-warning "" } */
15 bar();
16 return 0;