From 3b3ed501c773e336e5fd184a913f7213fa306981 Mon Sep 17 00:00:00 2001 From: Phil Dawes Date: Fri, 21 Aug 2009 19:54:47 +0100 Subject: [PATCH] added padding to align userenv to an 8byte boundary --- vm/vm.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/vm/vm.hpp b/vm/vm.hpp index 967956e0cf..e0b598de6f 100644 --- a/vm/vm.hpp +++ b/vm/vm.hpp @@ -8,6 +8,7 @@ struct factorvm { zone nursery; /* new objects are allocated here */ cell cards_offset; cell decks_offset; + cell __padding__ ; // align to 8byte boundary (for 32bit platforms) cell userenv[USER_ENV]; /* TAGGED user environment data; see getenv/setenv prims */