1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

Reorder struct scm_vm fields.

* libguile/vm.h (struct scm_vm): Reorder fields, perhaps for better
  locality.
This commit is contained in:
Andy Wingo 2013-11-21 16:51:04 +01:00
parent a222cbc9d1
commit a3da449801

View file

@ -45,9 +45,9 @@ struct scm_vm {
size_t stack_size; /* stack size */ size_t stack_size; /* stack size */
SCM *stack_base; /* stack base address */ SCM *stack_base; /* stack base address */
SCM *stack_limit; /* stack limit address */ SCM *stack_limit; /* stack limit address */
int engine; /* which vm engine we're using */
SCM hooks[SCM_VM_NUM_HOOKS]; /* hooks */
int trace_level; /* traces enabled if trace_level > 0 */ int trace_level; /* traces enabled if trace_level > 0 */
SCM hooks[SCM_VM_NUM_HOOKS]; /* hooks */
int engine; /* which vm engine we're using */
}; };
SCM_API SCM scm_the_vm_fluid; SCM_API SCM scm_the_vm_fluid;