remove alignment bump again

This commit is contained in:
Folkert 2021-09-12 14:01:41 +02:00
parent d09faad2c1
commit 0b893eb972
3 changed files with 6 additions and 24 deletions

View file

@ -1158,8 +1158,8 @@ impl<'a> Builtin<'a> {
//
// In webassembly, For that to be safe
// they must be aligned to allow such access
List(_) | EmptyList => pointer_size.max(8),
Str | EmptyStr => pointer_size.max(8),
List(_) | EmptyList => pointer_size,
Str | EmptyStr => pointer_size,
}
}