align u128 to 16 again

This commit is contained in:
Folkert 2023-09-14 14:53:18 +02:00
parent 368c2670a0
commit b92d8d55a1
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -131,7 +131,7 @@ impl IntWidth {
//
// however, rust does not always think that this is true
match target_info.architecture {
Architecture::X86_64 => 8,
Architecture::X86_64 => 16,
Architecture::Aarch64 | Architecture::Aarch32 | Architecture::Wasm32 => 16,
Architecture::X86_32 => 8,
}