* gcc.dg/float-range-3.c: Use "dg-do compile" dejagnu directive
[official-gcc/alias-decl.git] / gcc / testsuite / g++.dg / tree-ssa / pr31146-2.C
blobd2edb1953a348e90d4267a027de870c215dfe132
1 /* { dg-do compile } */
2 /* { dg-options "-O -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 /* { dg-final { scan-tree-dump "Replaced .* != 0B. with .1" "forwprop1" } } */
24 /* { dg-final { cleanup-tree-dump "forwprop1" } } */