URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [opt/] [inline12.C] - Rev 826
Compare with Previous | Blame | View Log
// PR tree-optimization/33458// { dg-do compile }// { dg-options "-O" }inline voidfoo (int *p, int n){for (; n > 0; --n, ++p)*p = 0;}struct A{int x[2];A () { foo (x, 2); }};inline AgetA (){return A ();}struct B{A a;B ();};B::B () : a (getA ()){}
