* gcc.dg/20031012-1.c: New test.
From-SVN: r72410
This commit is contained in:
parent
1998463c54
commit
e3c8de6a85
@ -1,3 +1,7 @@
|
||||
2003-10-12 Steven Bosscher <steven@gcc.gnu.org>
|
||||
|
||||
* gcc.dg/20031012-1.c: New test.
|
||||
|
||||
2003-10-12 Steven Bosscher <steven@gcc.gnu.org>
|
||||
|
||||
* gcc.dg/weak/weak-3.c: Fix for new warning.
|
||||
|
17
gcc/testsuite/gcc.dg/20031012-1.c
Normal file
17
gcc/testsuite/gcc.dg/20031012-1.c
Normal file
@ -0,0 +1,17 @@
|
||||
/* Origin: Andrew Morton <akpm@osdl.org> */
|
||||
/* Warn if a function addres of a non-weak function is used
|
||||
as a truth value. */
|
||||
/* See thread starting at http://gcc.gnu.org/ml/gcc/2003-10/msg00414.html */
|
||||
|
||||
void foo(void)
|
||||
{}
|
||||
|
||||
void bar(void)
|
||||
{}
|
||||
|
||||
int main() {
|
||||
if (foo) /* { dg-warning "" } */
|
||||
bar();
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user