URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [init/] [save1.C] - Rev 816
Compare with Previous | Blame | View Log
// PR c++/8748// We were wrapping the ARRAY_REF in a SAVE_EXPR, causing us to try to make a bitwise// copy of b[0].struct A{int i;};struct B : A{virtual ~B();};struct C{B b[1];};void foo() { C().b[0].i; }
