This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Fwd: How to gimplify_build a FMA_EXPR since it was removed?
- From: Laurent Thévenoux <lrnt at thvnx dot com>
- To: gcc at gcc dot gnu dot org
- Date: Mon, 04 Feb 2019 13:46:23 +0100
- Subject: Fwd: How to gimplify_build a FMA_EXPR since it was removed?
Sorry for duplicate, gcc-help was not the right mailing list for this one.
-------- Original Message --------
Subject: How to gimplify_build a FMA_EXPR since it was removed?
Date: Monday, February 04, 2019 13:28 CET
From: Laurent Thévenoux <lrnt@thvnx.com>
To: gcc-help@gcc.gnu.org
CC: richard.sandiford@linaro.org
Hi,
I've developed some code in gcc/tree-complex.c. I was using the
FMA_EXPR to generate fma operations such as in:
```
rr = gimplify_build3 (gsi, FMA_EXPR, inner_type, ai, ai, p1r);```
FMA_EXPR was removed in https://gcc.gnu.org/ml/gcc-patches/2018-05/msg00570.html.
Is there an easy way to gimplify FMAs with the new functions
introduced in the patch below?
Thanks,
Laurent