Re: [Mesa-dev] [PATCH] [RFC] gallivm: Use new LLVM fast-math-flags API

2018-03-02 Thread Marek Olšák
Yes. Marek On Wed, Feb 28, 2018 at 10:25 AM, Alex Smith wrote: > Hi, > > Could this (commit 5d61fa4e68b7eb6d481a37efdbb35fdce675a6ad on master) be > backported to the 17.3 branch to allow it to build with LLVM 6? > > Thanks, > Alex > > On 6 November 2017 at 21:16, Marek Olšák wrote: >> >> Revie

Re: [Mesa-dev] [PATCH] [RFC] gallivm: Use new LLVM fast-math-flags API

2018-02-28 Thread Alex Smith
Hi, Could this (commit 5d61fa4e68b7eb6d481a37efdbb35fdce675a6ad on master) be backported to the 17.3 branch to allow it to build with LLVM 6? Thanks, Alex On 6 November 2017 at 21:16, Marek Olšák wrote: > Reviewed-by: Marek Olšák > > Marek > > On Mon, Nov 6, 2017 at 10:09 PM, Tobias Droste w

Re: [Mesa-dev] [PATCH] [RFC] gallivm: Use new LLVM fast-math-flags API

2017-11-06 Thread Marek Olšák
Reviewed-by: Marek Olšák Marek On Mon, Nov 6, 2017 at 10:09 PM, Tobias Droste wrote: > LLVM 6 changed the API on the fast-math-flags: > https://reviews.llvm.org/rL317488 > > NOTE: This also enables the new flag 'ApproxFunc' to allow for > approximations for library functions (sin, cos, ...). I'

[Mesa-dev] [PATCH] [RFC] gallivm: Use new LLVM fast-math-flags API

2017-11-06 Thread Tobias Droste
LLVM 6 changed the API on the fast-math-flags: https://reviews.llvm.org/rL317488 NOTE: This also enables the new flag 'ApproxFunc' to allow for approximations for library functions (sin, cos, ...). I'm not completly convinced, that this is something mesa should do. Signed-off-by: Tobias Droste -