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:
parent
a222cbc9d1
commit
a3da449801
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue