Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
ptersilie committed Feb 19, 2024
1 parent 20df265 commit 9b58be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ykrt/src/compile/jitc_yk/jit_ir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ mod tests {
assert_eq!(mem::size_of::<CallInstruction>(), 7);
assert_eq!(mem::size_of::<StoreInstruction>(), 4);
assert_eq!(mem::size_of::<LoadInstruction>(), 6);
assert_eq!(mem::size_of::<LoadGlobalInstruction>(), 6);
assert_eq!(mem::size_of::<LoadGlobalInstruction>(), 3);
assert_eq!(mem::size_of::<StoreGlobalInstruction>(), 6);
assert_eq!(mem::size_of::<PtrAddInstruction>(), 6);
assert!(mem::size_of::<Instruction>() <= mem::size_of::<u64>());
Expand Down

0 comments on commit 9b58be8

Please sign in to comment.