[AArch64] Fix SVE testsuite failures for ILP32 (PR 83846)
[official-gcc.git] / gcc / testsuite / g++.dg / other / pr42806.C
blob9823238d5d4be65a97f4837f9ede260cff154c23
1 // { dg-do compile }
2 // { dg-options "-O -fcompare-debug" }
4 struct S1 {
5     ~S1() { }
6 };
8 struct S2 {
9     S1 s1;
10     void m();
11     ~S2() { m(); }
14 struct S3 {
15     S3(int, S2);
18 void foo()
20   S3(0, S2());