Ejemplo n.º 1
0
uint64_t helper_fcvt_d_w(CPURISCVState *env, uint64_t frs1, uint64_t rm)
{
    softfloat_roundingMode = RISCV_RM;
    frs1 = i32_to_f64((int32_t)frs1);
    set_fp_exceptions;
    return frs1;
}
Ejemplo n.º 2
0
aeabi_double_t __aeabi_i2d(int i) {
  return d(i32_to_f64(i));
}