use native stack alignment size

Signed-off-by: xermicus <cyrill@parity.io>
This commit is contained in:
xermicus
2024-03-26 10:05:00 +01:00
parent 2865676323
commit a67e6a94f5
2 changed files with 9 additions and 6 deletions
+3
View File
@@ -8,6 +8,9 @@ pub const BYTE_LENGTH_BYTE: usize = 1;
/// The x86 word byte-length.
pub const BYTE_LENGTH_X32: usize = 4;
/// Native stack alignment size in bytes
pub const BYTE_LENGTH_STACK_ALIGN: usize = 16;
/// The x86_64 word byte-length.
pub const BYTE_LENGTH_X64: usize = 8;