PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / nrv1.c
blobca700924a239c04d01509940b491fba3ac12f487
1 /* Test that the NRV optimization doesn't cause a1 to change too soon. This
2 is equivalent to c++/19317. */
3 /* { dg-do run } */
5 void abort (void);
7 struct A
9 int i[100];
12 struct A a1;
14 struct A f ()
16 struct A a2;
17 a2.i[0] = 42;
18 /* a1.i[0] should still be 0 until we return. */
19 if (a1.i[0] != 0)
20 abort ();
21 return a2;
24 int main()
26 a1 = f();
27 return 0;