Displaying 2 results from an estimated 2 matches for "092808f2".
Did you mean:
0.280822
2012 Apr 15
0
[LLVMdev] Representing -ffast-math at the IR level
...39;s not me, who is going to implement this, I'm just
try to draw an attention to the issues that we'll finally encounter down
the road.
Dmitry.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120415/092808f2/attachment.html>
2012 Apr 14
4
[LLVMdev] Representing -ffast-math at the IR level
I feel like this discussion is getting a bit off track...
On Sun, Apr 15, 2012 at 12:00 AM, Dmitry Babokin <babokin at gmail.com> wrote:
>
> I would define the set of transformations, such as (i can help with more
> complete list if you prefer):
>
> - reassociation
> - x+0.0=>x
> - x*0.0=>0.0
> - x*1.0=>x
> - a/b => a* 1/b
> -