summaryrefslogtreecommitdiffstats
path: root/vendor/compiler_builtins/libm/src/math/remainder.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vendor/compiler_builtins/libm/src/math/remainder.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/vendor/compiler_builtins/libm/src/math/remainder.rs b/vendor/compiler_builtins/libm/src/math/remainder.rs
new file mode 100644
index 000000000..9e966c9ed
--- /dev/null
+++ b/vendor/compiler_builtins/libm/src/math/remainder.rs
@@ -0,0 +1,5 @@
+#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
+pub fn remainder(x: f64, y: f64) -> f64 {
+ let (result, _) = super::remquo(x, y);
+ result
+}