Re: [Mesa-dev] [PATCH 2/2] ac/nir: fix translation of nir_op_fsign for doubles

2018-01-11 Thread Samuel Pitoiset
Series is: Reviewed-by: Samuel Pitoiset On 01/11/2018 12:35 PM, Timothy Arceri wrote: Without this we end up with the llvm error message: "Both operands to a binary operator are not of the same type!" --- src/amd/common/ac_nir_to_llvm.c | 26 +++--- 1 file changed, 19 i

[Mesa-dev] [PATCH 2/2] ac/nir: fix translation of nir_op_fsign for doubles

2018-01-11 Thread Timothy Arceri
Without this we end up with the llvm error message: "Both operands to a binary operator are not of the same type!" --- src/amd/common/ac_nir_to_llvm.c | 26 +++--- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/a