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.dg/] [tree-ssa/] [pr15791-1.c] - Rev 298
Compare with Previous | Blame | View Log
/* { dg-do link } */ void link_error (); int main () { struct { int b[2]; } x; int b[2]; if (&b[1] != &b[1]) link_error (); if (&b[0] != b) link_error (); if (b == &b[2]) link_error (); if (b != b) link_error (); if (&x.b[1] == &x.b[0]) link_error (); if (x.b != &x.b[0]) link_error (); if (&x.b[1] == x.b) link_error (); return 0; }