]> git.proxmox.com Git - rustc.git/blame - vendor/compiler_builtins/libm/src/math/ldexpf.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / vendor / compiler_builtins / libm / src / math / ldexpf.rs
CommitLineData
48663c56
XL
1#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
2pub fn ldexpf(x: f32, n: i32) -> f32 {
3 super::scalbnf(x, n)
4}