Wattributes-10.c: Add -fno-common option on hppa*-*-hpux*.
[official-gcc.git] / gcc / testsuite / g++.dg / ipa / devirt-31.C
blob7d12f79810cf31ab1810e270bf2320dd9366b869
1 // { dg-options "-O3 -fdump-tree-ssa" }
2 inline void t()
4   struct A {virtual void q() {}};
5   static struct A *a;
6   if (!a)
7     a = new(A);
8   a->q();
9 };
10 void
11 m()
13   t();
15 // { dg-final { scan-tree-dump-not "OBJ_TYPE_REF" "ssa" } }