diff options
Diffstat (limited to 'library/compiler-builtins/libm/src/math/scalbnf.rs')
| -rw-r--r-- | library/compiler-builtins/libm/src/math/scalbnf.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/library/compiler-builtins/libm/src/math/scalbnf.rs b/library/compiler-builtins/libm/src/math/scalbnf.rs new file mode 100644 index 00000000000..57e7ba76f60 --- /dev/null +++ b/library/compiler-builtins/libm/src/math/scalbnf.rs @@ -0,0 +1,4 @@ +#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)] +pub fn scalbnf(x: f32, n: i32) -> f32 { + super::generic::scalbn(x, n) +} |
