URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [pr28778.c] - Rev 297
Compare with Previous | Blame | View Log
extern void abort(void); typedef long GLint; void aglChoosePixelFormat (const GLint *); void find (const int *alistp) { const int *blist; int list[32]; if (alistp) blist = alistp; else { list[3] = 42; blist = list; } aglChoosePixelFormat ((GLint *) blist); } void aglChoosePixelFormat (const GLint * a) { int *b = (int *) a; if (b[3] != 42) abort (); } int main (void) { find (0); return 0; }