nir: fix comment typo about f2d/d2f

Signed-off-by: Rob Clark <robclark@freedesktop.org>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Rob Clark 2016-05-13 15:26:15 -04:00
parent be2b13e3bf
commit 8b24f7b440
1 changed files with 2 additions and 2 deletions

View File

@ -177,8 +177,8 @@ unop_convert("b2i", tint32, tbool, "src0 ? 1 : 0") # Boolean-to-int conversion
unop_convert("u2f", tfloat32, tuint32, "src0") # Unsigned-to-float conversion.
unop_convert("u2d", tfloat64, tuint32, "src0") # Unsigned-to-double conversion.
# double-to-float conversion
unop_convert("d2f", tfloat32, tfloat64, "src0") # Single to double precision
unop_convert("f2d", tfloat64, tfloat32, "src0") # Double to single precision
unop_convert("d2f", tfloat32, tfloat64, "src0") # Double to single precision
unop_convert("f2d", tfloat64, tfloat32, "src0") # Single to double precision
# Unary floating-point rounding operations.