URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [init/] [for1.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/13865
// Bug: We were destroying 'a' before executing the loop.
// { dg-do run }
#include <stdio.h>
int i;
int r;
class A
{
public:
A() { printf("A ctor\n"); }
~A()
{
printf("A dtor\n");
if (i != 2)
r = 1;
}
};
int main(int argc, char **argv)
{
for (A a; i < 2; ++i) {
printf("iteration %d\n", i);
}
return r;
}
Go to most recent revision | Compare with Previous | Blame | View Log