Skip to content

Commit

Permalink
fix(quaternary) Invalid mode enum used for bitfield.
Browse files Browse the repository at this point in the history
  • Loading branch information
x4exr committed Aug 21, 2024
1 parent 24c6b15 commit 30a22cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/instruction/binary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ bitfield! {
#[derive(Clone, Copy, PartialEq, Eq)]
pub struct RegroupingQuaternaryOperation(pub u32): Debug, FromRaw, IntoRaw {
pub atomic: bool @ 5,
pub mode: bool [unsafe! RegroupingBinaryMode] @ 6,
pub mode: bool [unsafe! RegroupingQuaternaryMode] @ 6,
pub upper: u8 @ 7..=11,
pub source_0: u8 @ 12..=16,
pub source_1: u8 @ 17..=21,
Expand Down

0 comments on commit 30a22cd

Please sign in to comment.