/* APPLE LOCAL file mainline 2883585 2005-04-20 */ | |
/* Test -Wno-int-to-pointer-cast. */ | |
/* Origin: Joseph Myers <joseph@codesourcery.com> */ | |
/* { dg-do compile } */ | |
/* { dg-options "-Wno-int-to-pointer-cast" } */ | |
char c; | |
void * | |
f (void) | |
{ | |
return (void *) c; | |
} | |
void *p; | |
char | |
g (void) | |
{ | |
return (char) p; /* { dg-warning "warning: cast from pointer to integer of different size" } */ | |
} |