URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20041212-1.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
/* A function pointer compared with a void pointer should not be canonicalized. See PR middle-end/17564. */ void *f (void) __attribute__ ((__noinline__)); void * f (void) { return f; } int main (void) { if (f () != f) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log