]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Add another testcase for PR 110266
authorAndrew Pinski <apinski@marvell.com>
Thu, 15 Jun 2023 17:49:40 +0000 (17:49 +0000)
committerAndrew Pinski <apinski@marvell.com>
Thu, 15 Jun 2023 17:56:50 +0000 (17:56 +0000)
Since the combining of sin/cos into cexpi is depedent
on the target, this adds another testcase which had failed (earlier in
evpr rather than vrp2) that will fail on all targets rather than
ones which have sincos or C99 math functions.

Committed as obvious after a quick test.

gcc/testsuite/ChangeLog:

PR tree-optimization/110266
* gcc.c-torture/compile/pr110266.c: New test.

gcc/testsuite/gcc.c-torture/compile/pr110266.c [new file with mode: 0644]

diff --git a/gcc/testsuite/gcc.c-torture/compile/pr110266.c b/gcc/testsuite/gcc.c-torture/compile/pr110266.c
new file mode 100644 (file)
index 0000000..92af0c5
--- /dev/null
@@ -0,0 +1,9 @@
+double PsyBufferUpdate(int n)
+{
+  if (n == 4)
+    {
+      _Complex double t = __builtin_cexpi(n);
+      return __real t * __imag t;
+    }
+  return 0;
+}