summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/nrv5.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/nrv5.c')
-rw-r--r--gcc/testsuite/gcc.dg/nrv5.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/nrv5.c b/gcc/testsuite/gcc.dg/nrv5.c
new file mode 100644
index 000000000..629b0f329
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/nrv5.c
@@ -0,0 +1,28 @@
+/* Verify that NRV optimizations are prohibited when the LHS is
+ something that may be call-clobbered. */
+/* { dg-do compile } */
+/* { dg-options "-O -fdump-tree-optimized" } */
+
+typedef struct { int x[20]; void *y; } S;
+typedef struct { int a; S b; } T;
+S nrv_candidate (void);
+void use_result (S);
+void make_escape (S *);
+void foo (void)
+{
+ S result;
+ T result_arr[10][5];
+
+ make_escape (&result);
+ make_escape (&(result_arr[3][4].b));
+
+ /* Neither call should be allowed to use NRV optimization. */
+ result = nrv_candidate ();
+ result_arr[3][4].b = nrv_candidate ();
+
+ use_result (result);
+ use_result (result_arr[3][4].b);
+}
+
+/* { dg-final { scan-tree-dump-times "return slot optimization" 0 "optimized" } } */
+/* { dg-final { cleanup-tree-dump "optimized" } } */