URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [Wno-pointer-sign.c] - Rev 455
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-Wno-pointer-sign" } */ void f1(long *); void f2(unsigned long *); int main() { long *lp; unsigned long *ulp; char *cp; unsigned char *ucp; signed char *scp; ulp = lp; /* { dg-bogus " pointer targets in assignment differ in signedness" } */ lp = ulp; /* { dg-bogus " pointer targets in assignment differ in signedness" } */ f1(ulp); /* { dg-bogus " differ in signedness" } */ f2(lp); /* { dg-bogus " differ in signedness" } */ cp = ucp; /* { dg-bogus " pointer targets in assignment differ in signedness" } */ cp = scp; /* { dg-bogus " pointer targets in assignment differ in signedness" } */ ucp = scp; /* { dg-bogus " pointer targets in assignment differ in signedness" } */ ucp = cp; /* { dg-bogus " pointer targets in assignment differ in signedness" } */ scp = ucp; /* { dg-bogus " pointer targets in assignment differ in signedness" } */ scp = cp; /* { dg-bogus " pointer targets in assignment differ in signedness" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log