URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [Wpointer-to-int-cast-3.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test -Wno-pointer-to-int-cast. */ /* Origin: Joseph Myers <joseph@codesourcery.com> */ /* { dg-do compile } */ /* { dg-options "-Wno-pointer-to-int-cast" } */ void *p; char f (void) { return (char) p; } char c; void * g (void) { return (void *) c; /* { dg-warning "cast to pointer from integer of different size" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log