2018-10-23 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / tree-ssa / pr31146-2.C
blob9fb5dc1b60c28828b22d71b729b9919461d4cd4f
1 /* { dg-do compile } */
2 /* { dg-options "-O -fcheck-new -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 /* GCC 8 emits operator new () != NULL with -fcheck-new. */
24 /* { dg-final { scan-tree-dump "Replaced .* != 0B. with .1" "forwprop1" } } */