Skip to content

Commit

Permalink
fix: mask shifts
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouwfang committed Jan 3, 2025
1 parent 90aecf3 commit fa1544b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/interpreter/src/side_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ impl SideTableEntry {
const VAL_CNT_MASK: u128 = 0x3 << 31;
const POP_CNT_MASK: u128 = 0x3 << 33;
const TYPE_IDX_MASK: u128 = 0xffff << 35;
const PARSER_POS_MASK: u128 = 0xffff << 71;
const PARSER_SIZE_MASK: u128 = 0xffff << 107;
const PARSER_POS_MASK: u128 = 0xffff << 51;
const PARSER_SIZE_MASK: u128 = 0xffff << 67;

pub fn new(view: SideTableEntryView) -> Result<Self, Error> {
let mut fields = 0;
Expand Down

0 comments on commit fa1544b

Please sign in to comment.