core/llvm_intrinsics: remove llvm.roundeven call from call_float_roundeven

This commit is contained in:
abdul124 2024-06-20 12:06:24 +08:00
parent b0b804051a
commit 1835561217
2 changed files with 4 additions and 3 deletions

View File

@ -671,13 +671,14 @@ pub fn call_float_round<'ctx>(
}
/// Invokes the
/// [`llvm.roundeven`](https://llvm.org/docs/LangRef.html#llvm-roundeven-intrinsic) intrinsic.
/// [`llvm.nearbyint`](https://llvm.org/docs/LangRef.html#llvm-nearbyint-intrinsic)
/// Note [`llvm.roundeven`](https://llvm.org/docs/LangRef.html#llvm-roundeven-intrinsic) not supported on all platforms
pub fn call_float_roundeven<'ctx>(
ctx: &CodeGenContext<'ctx, '_>,
val: FloatValue<'ctx>,
name: Option<&str>,
) -> FloatValue<'ctx> {
const FN_NAME: &str = "llvm.roundeven";
const FN_NAME: &str = "llvm.nearbyint";
let llvm_float_t = val.get_type();

View File

@ -37,7 +37,7 @@ def test_round64():
output_int64(round64(x))
def test_np_round():
for x in [-1.5, -0.5, 0.5, 1.5, dbl_inf(), -dbl_inf(), dbl_nan()]:
for x in [-1.5, -0.5, 0.5, 1.5, dbl_inf(), -dbl_inf(), dbl_nan(), 0.0, -0.0, 1.6, 1.4, -1.4, -1.6]:
output_float64(np_round(x))
def test_np_isnan():