URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [dtor1.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do run }// { dg-options "-O2" }int i;struct S {S ();S (const S&);~S ();};S::S () { ++i; }S::S (const S&) { ++i; }S::~S () { --i; }inline void f (S) {}int main () {{S s;f (s);}return i;}
Go to most recent revision | Compare with Previous | Blame | View Log
