aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/graphite/pr42130.C
blob: ee31abad0ee014b6a4e6d7af456482004abff411 (plain)
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  } */