diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/20040206-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/20040206-1.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/20040206-1.c b/gcc/testsuite/gcc.dg/20040206-1.c new file mode 100644 index 00000000000..7fc4b0d7605 --- /dev/null +++ b/gcc/testsuite/gcc.dg/20040206-1.c @@ -0,0 +1,11 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -W -Wall" } */ +/* PR c/13127 + On the tree-ssa this used to warn about an anonymous + uninitialized variable. + + The warning about "no return statement in function + returning non-void" is PR 13000. */ + +static int foo (int a __attribute__((unused)) ) { } /* { dg-warning "return" "" { xfail *-*-* } } */ +int main (void) { return foo (0); } |