URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [Wpointer-arith.c] - Rev 298
Compare with Previous | Blame | View Log
/* PR 35058: -Werror= works only with some warnings. */ /* { dg-do compile } */ /* { dg-options "-Werror=pointer-arith" } */ void *a; void *test(){ int x=5; if(a) a++; /* { dg-error "wrong type argument to increment" } */ return a+x; /* { dg-error "pointer of type" } */ }