aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr110266.c
blob: 92af0c51efc979ff218396026f61b9f3930270cd (plain)
1
2
3
4
5
6
7
8
9
double PsyBufferUpdate(int n)
{
  if (n == 4)
    {
      _Complex double t = __builtin_cexpi(n);
      return __real t * __imag t;
    }
  return 0;
}