aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/eval-order8.C
diff options
context:
space:
mode:
authoriains <iains@138bc75d-0d04-0410-961f-82ee72b054a4>2019-10-14 09:28:45 +0000
committeriains <iains@138bc75d-0d04-0410-961f-82ee72b054a4>2019-10-14 09:28:45 +0000
commit141de8c42dac86ecb74cdde1bf3d404047713bda (patch)
tree52692a6e37fbd9707690fdae682f66650c3c59c1 /gcc/testsuite/g++.dg/cpp1z/eval-order8.C
parentf956f06189641260c728bf2ed9195d5bca7e9391 (diff)
parentbb3f72175a401d6956b711b4a867ff058a1dcb8c (diff)
c++-coroutines - merge trunk r276952.c++-coroutines
2019-10-14 Iain Sandoe <iain@sandoe.co.uk> Merge trunk r276952. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/c++-coroutines@276957 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/g++.dg/cpp1z/eval-order8.C')
-rw-r--r--gcc/testsuite/g++.dg/cpp1z/eval-order8.C20
1 files changed, 20 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/cpp1z/eval-order8.C b/gcc/testsuite/g++.dg/cpp1z/eval-order8.C
new file mode 100644
index 00000000000..a8a4240f1b3
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp1z/eval-order8.C
@@ -0,0 +1,20 @@
+// PR c++/91987
+// { dg-do run }
+// { dg-options "-fstrong-eval-order" }
+
+int a[4] = { 1, 2, 3, 4 };
+int b;
+
+int
+main ()
+{
+ int *x = a;
+ b = 1;
+ int r = (b = 4, x)[(b *= 2, 3)];
+ if (b != 8 || r != 4)
+ __builtin_abort ();
+ b = 1;
+ r = (b = 3, 2)[(b *= 2, x)];
+ if (b != 6 || r != 3)
+ __builtin_abort ();
+}