URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [Wpointer-to-int-cast-3.c] - Rev 801
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