From da0243b0ab460ee344e8efad21effb4aa34ef27d Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 5 Sep 2018 16:35:41 -0700 Subject: [PATCH] Update docs to reflect that saturating fp-to-int conversion is now implemented. --- cranelift/docs/ir.rst | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/cranelift/docs/ir.rst b/cranelift/docs/ir.rst index 5f1982e1b4..8bd17cacbb 100644 --- a/cranelift/docs/ir.rst +++ b/cranelift/docs/ir.rst @@ -1008,15 +1008,11 @@ Conversion operations .. autoinst:: fdemote .. autoinst:: fcvt_to_uint .. autoinst:: fcvt_to_sint +.. autoinst:: fcvt_to_uint_sat +.. autoinst:: fcvt_to_sint_sat .. autoinst:: fcvt_from_uint .. autoinst:: fcvt_from_sint -.. todo:: Saturating fcvt_to_sint and fcvt_to_uint. - - For example, these appear in - `Rust `_ and - `WebAssembly `_. - Legalization operations -----------------------