From: Tony Cook Date: Tue, 23 Jun 2020 04:19:43 +0000 (+1000) Subject: Revert "op.h: Add additional padding to struct opslab to ensure proper alignment" X-Git-Tag: v5.33.1~182 X-Git-Url: https://perl5.git.perl.org/perl5.git/commitdiff_plain/95c9b7e93b37d874a0f6f2a3c25fbe1121199124 Revert "op.h: Add additional padding to struct opslab to ensure proper alignment" This reverts commit a760468c9355bafaee57e94f13705c0ea925d9ca. This change is fragile, the next change avoids the need for such manual padding. --- diff --git a/op.h b/op.h index b9f6da8..fc21f03 100644 --- a/op.h +++ b/op.h @@ -713,9 +713,6 @@ struct opslab { units) */ # ifdef PERL_DEBUG_READONLY_OPS bool opslab_readonly; - U8 opslab_padding; /* padding to ensure that opslab_slots is always */ -# else - U16 opslab_padding; /* located at an offset with 32-bit alignment */ # endif OPSLOT opslab_slots; /* slots begin here */ };