OSDN Git Service

Add missing test from last commit
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / tree-ssa / pr31146-2.C
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-forwprop1" } */
3
4 #include <new>
5
6 template <class T>
7 struct Vec
8 {
9   Vec()
10   {
11     for (int i=0; i<3; ++i)
12       new (&a[i]) T(0);
13   }
14   T a[3];
15 };
16
17 double foo (void)
18 {
19   Vec<double> v;
20   return v.a[2];
21 }
22
23 /* { dg-final { scan-tree-dump "Replaced .*iftmp.* != 0B. with .1" "forwprop1" } } */
24 /* { dg-final { cleanup-tree-dump "forwprop1" } } */