URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [pr29254.c] - Rev 154
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O3 -Werror" } */ /* { dg-warning "warnings being treated as errors" "" {target "*-*-*"} 0 } */ list_compare (int * list1) { if (list1) value_compare (); } func1 (int * f){} value_compare (int * a) { if (a) list_compare (a); } func2 (const int * fb) { func1 ((int *) fb); /* { dg-warning "discards qualifiers" } */ }