Skip to content

Commit

Permalink
VAL_CNT_MASK: u64 = 0xff
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouwfang committed Jan 2, 2025
1 parent de07cb6 commit 1bbd0ff
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 @@ -33,8 +33,8 @@ pub struct SideTableEntryView {
impl SideTableEntry {
const DELTA_IP_MASK: u64 = 0xffff;
const DELTA_STP_MASK: u64 = 0x7fff << 16;
const VAL_CNT_MASK: u64 = 0xfff << 31;
const POP_CNT_MASK: u64 = 0xffff << 43;
const VAL_CNT_MASK: u64 = 0xff << 31;
const POP_CNT_MASK: u64 = 0xffff << 39;

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

0 comments on commit 1bbd0ff

Please sign in to comment.