コード例 #1
0
ファイル: op_helper.c プロジェクト: gzh19890524/riscv-qemu
uint64_t helper_fcvt_d_wu(CPURISCVState *env, uint64_t frs1, uint64_t rm)
{
    softfloat_roundingMode = RISCV_RM;
    frs1 = ui32_to_f64((uint32_t)frs1);
    set_fp_exceptions;
    return frs1;
}
コード例 #2
0
ファイル: double.c プロジェクト: Tilka/epsilon
aeabi_double_t __aeabi_ui2d(unsigned int i) {
  return d(ui32_to_f64(i));
}