aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/unroll1.C
blob: 90f37f1ef9210d535a6cb83f5d125b483f300101 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Build don't link:
// Special g++ Options: -g -O -funroll-loops

struct A {
  inline ~A() { }
};

void foo (A) {
  while (1)
    A bar;
}