Skip to content

Commit c43cfdf

Browse files
committed
fix: the instruction size has changed (again)
1 parent e33816d commit c43cfdf

File tree

1 file changed

+1
-1
lines changed
  • cranelift/codegen/src/isa/x64/inst

1 file changed

+1
-1
lines changed

cranelift/codegen/src/isa/x64/inst/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pub struct ReturnCallInfo<T> {
5959
fn inst_size_test() {
6060
// This test will help with unintentionally growing the size
6161
// of the Inst enum.
62-
assert_eq!(48, std::mem::size_of::<Inst>());
62+
assert_eq!(56, std::mem::size_of::<Inst>());
6363
}
6464

6565
pub(crate) fn low32_will_sign_extend_to_64(x: u64) -> bool {

0 commit comments

Comments
 (0)