x86_64.rs 151 B

123456789
  1. #[no_mangle]
  2. pub extern "C" fn __floatdisf(x: i64) -> f32 {
  3. x as f32
  4. }
  5. #[no_mangle]
  6. pub extern "C" fn __floatdidf(x: i64) -> f64 {
  7. x as f64
  8. }