PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / nrv3.c
blob9723712f7d09fc44095b88f75c44038cb82e34e6
1 /* Verify that gimple-level NRV is occurring when values other than the
2 return slot are call-clobbered. */
3 /* { dg-do compile } */
4 /* { dg-options "-O -fdump-tree-optimized" } */
6 #ifdef __SPU__
7 /* SPU returns aggregates up to 1172 bytes in registers. */
8 typedef struct { int x[300]; void *y; } S;
9 #else
10 typedef struct { int x[20]; void *y; } S;
11 #endif
12 typedef struct { int a; S b; } T;
13 S nrv_candidate (void);
14 void use_result (S, int);
15 int *ptr;
16 void foo (void)
18 S result;
19 T result_arr[10][5];
21 int i;
23 ptr = &i;
25 /* i is call-clobbered for these calls, but result and result_arr
26 aren't. */
27 result = nrv_candidate ();
28 result_arr[3][4].b = nrv_candidate ();
30 use_result (result, i);
31 use_result (result_arr[3][4].b, i);
34 /* { dg-final { scan-tree-dump-times "return slot optimization" 2 "optimized" } } */