nir: use generic float types for frexp_exp and frexp_sig

Only the exponent needs to be 32-bit signed integer.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
Samuel Pitoiset 2019-03-22 13:02:08 +01:00
parent 77aa11ca32
commit 6ae5797243
1 changed files with 2 additions and 2 deletions

View File

@ -248,8 +248,8 @@ unop("fsin", tfloat, "bit_size == 64 ? sin(src0) : sinf(src0)")
unop("fcos", tfloat, "bit_size == 64 ? cos(src0) : cosf(src0)")
# dfrexp
unop_convert("frexp_exp", tint32, tfloat64, "frexp(src0, &dst);")
unop_convert("frexp_sig", tfloat64, tfloat64, "int n; dst = frexp(src0, &n);")
unop_convert("frexp_exp", tint32, tfloat, "frexp(src0, &dst);")
unop_convert("frexp_sig", tfloat, tfloat, "int n; dst = frexp(src0, &n);")
# Partial derivatives.