Fix all tests that fail with -sanitize=return.
[official-gcc.git] / gcc / testsuite / g++.dg / tree-ssa / pr20489.C
blob0a1a569d2627e199436502997c417cb4248c44e7
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 struct A
6         ~A();
7 };
9 /* If we don't create SFT's for the "empty" structure A, bad things
10    will happen, and we will fail verification.  */
11 struct B
13         int i;
14         A a;
16         void foo() {}
19 void bar()
21         B().foo();