1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* { dg-options "-O2 -fgraphite-identity -fno-tree-ch" } */ #include <vector> using std::vector; vector<unsigned> & __attribute__((noinline, noclone)) foo(unsigned n) { vector<unsigned> *vv = new vector<unsigned>(n, 0u); return *vv; } int main() { foo(0); return 0; } /* { dg-do run } */