* gcc.dg/float-range-3.c: Use "dg-do compile" dejagnu directive
[official-gcc/alias-decl.git] / gcc / testsuite / g++.dg / tree-ssa / pr19952.C
blob54589a294cc62727e6c3dc560576405dcd36c37c
1 /* PR 19952 */
2 /* { dg-do compile } */
3 /* { dg-options "-ftree-vectorize -O2" } */
5 int i;
7 struct A
9     ~A() { ++i; }
12 struct B
14     A a;
17 void foo()
19     for (int i=0; i<2; ++i)
20     {
21         B *p;
22         if (p) p->~B();
23     }