diff options
author | Andy Wingo <wingo@pobox.com> | 2013-11-21 16:51:04 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-11-21 16:51:15 +0100 |
commit | a3da449801895e3f61aa2e085e7f4ff27c0f202c (patch) | |
tree | c43fc168b36dd4f10c436e2053f1d14abe1d3b6a | |
parent | a222cbc9d147c0649b5b4621579de977a690b213 (diff) | |
download | guile-a3da449801895e3f61aa2e085e7f4ff27c0f202c.tar.gz |
Reorder struct scm_vm fields.
* libguile/vm.h (struct scm_vm): Reorder fields, perhaps for better
locality.
-rw-r--r-- | libguile/vm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/vm.h b/libguile/vm.h index a805469ed..0b1a941fb 100644 --- a/libguile/vm.h +++ b/libguile/vm.h @@ -45,9 +45,9 @@ struct scm_vm { size_t stack_size; /* stack size */ SCM *stack_base; /* stack base 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 */ + SCM hooks[SCM_VM_NUM_HOOKS]; /* hooks */ + int engine; /* which vm engine we're using */ }; SCM_API SCM scm_the_vm_fluid; |