URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [pr15791-1.c] - Rev 12
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; }