Skip to content

Commit

Permalink
Done done?
Browse files Browse the repository at this point in the history
  • Loading branch information
robehn committed Jan 14, 2025
1 parent 7f6f2bd commit cf1e060
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/hotspot/cpu/riscv/assembler_riscv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -895,11 +895,11 @@ enum operand_size { int8, int16, int32, uint32, int64 };
// ==========================
static constexpr uint32_t OP_FP_MAJOR = 0b1010011;

enum FmtPrecision {
S_32_sp = 00,
D_64_dp = 01,
H_16_hp = 10,
Q_128_qp = 11
enum FmtPrecision : uint8_t {
S_32_sp = 0b00,
D_64_dp = 0b01,
H_16_hp = 0b10,
Q_128_qp = 0b11
};

private:
Expand Down

0 comments on commit cf1e060

Please sign in to comment.