* g++.dg/tree-ssa/pr31146-2.C: Only do scan-tree-dump for c++14_down.
[official-gcc.git] / gcc / testsuite / g++.dg / tree-ssa / pr31146-2.C
blob500d8b639ee7bdb0a752036bbe5bae8fa5fa6893
1 /* { dg-do compile } */
2 /* { dg-options "-O -fno-tree-vrp -fdump-tree-forwprop1" } */
4 #include <new>
6 template <class T>
7 struct Vec
9   Vec()
10   {
11     for (int i=0; i<3; ++i)
12       new (&a[i]) T(0);
13   }
14   T a[3];
17 double foo (void)
19   Vec<double> v;
20   return v.a[2];
23 /* -std=c++17 and above doesn't emit operator new () != NULL, so there is
24    nothing to fold anymore.  */
25 /* { dg-final { scan-tree-dump "Replaced .* != 0B. with .1" "forwprop1" { target c++14_down } } } */