Skip to content

Commit

Permalink
Fix FMVP.D.X implementation
Browse files Browse the repository at this point in the history
Resolves #1507
  • Loading branch information
aswaterman committed Nov 17, 2023
1 parent be5dee0 commit 4841ad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion riscv/insns/fmvp_d_x.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ require_extension(EXT_ZFA);
require_fp;
ui64_f64 ui;
ui.ui = ((uint64_t)RS2) << 32;
ui.ui |= RS1;
ui.ui |= zext32(RS1);
WRITE_FRD_D(f64(ui.ui));

0 comments on commit 4841ad0

Please sign in to comment.