sparker-arm commented on issue #3802:
Hi @cfallin
One thing to double-check before merging: can we verify that the size of Inst remains the same, even with the extra OperandSize?
There's a test in the aarch64 backend:
#[test] fn inst_size_test() { // This test will help with unintentionally growing the size // of the Inst enum. assert_eq!(32, std::mem::size_of::<Inst>()); }
Is this enough is this is passing?
sparker-arm edited a comment on issue #3802:
Hi @cfallin
One thing to double-check before merging: can we verify that the size of Inst remains the same, even with the extra OperandSize?
There's a test in the aarch64 backend:
#[test] fn inst_size_test() { // This test will help with unintentionally growing the size // of the Inst enum. assert_eq!(32, std::mem::size_of::<Inst>()); }
Is this enough if this is passing?
Last updated: Dec 23 2024 at 13:07 UTC