compiler-builtins-zynq/src/x86_64.rs

10 lines
151 B
Rust
Raw Normal View History

2016-08-08 04:58:05 +08:00
#[no_mangle]
pub extern "C" fn __floatdisf(x: i64) -> f32 {
x as f32
}
#[no_mangle]
pub extern "C" fn __floatdidf(x: i64) -> f64 {
x as f64
}