Commit 7cdc045e by Mike Stump

testcase for recent unroll.c fix

From-SVN: r31335
parent 3951ad49
// Special g++ Options: -O -funroll-loops
struct A {
~A();
};
void foo();
int main() {
for (int i=0;i<4;i++) {
A a;
foo();
}
}
void foo() { }
A::~A() { }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment