Signed-off-by: xermicus <cyrill@parity.io>
This commit is contained in:
xermicus
2024-08-05 18:27:38 +02:00
parent b002382d76
commit 44bc7b94b2
+2 -2
View File
@@ -7,9 +7,9 @@ pub const BYTE_LENGTH_BYTE: usize = 1;
pub const BYTE_LENGTH_X32: usize = 4;
/// Native stack alignment size in bytes
#[cfg(not(feautre = "riscv-64"))]
#[cfg(not(feature = "riscv-64"))]
pub const BYTE_LENGTH_STACK_ALIGN: usize = 4;
#[cfg(feautre = "riscv-64")]
#[cfg(feature = "riscv-64")]
pub const BYTE_LENGTH_STACK_ALIGN: usize = 8;
/// The x86_64 word byte-length.