diff options
author | Andy Wingo <wingo@pobox.com> | 2009-01-12 22:37:29 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2009-01-12 22:37:29 +0100 |
commit | 616167fc12fd42c14e021b5496e91154b3a0e8c0 (patch) | |
tree | a5a19b050f34a0d22893492bdb45dc8cf64c6b35 /libguile/vm.c | |
parent | 78bae3d6fa7c8aa6951cf9fc31707b06d80a920a (diff) | |
download | guile-616167fc12fd42c14e021b5496e91154b3a0e8c0.tar.gz |
remove a paranoid define; fix bitrot in measure.scm.
* benchmark/measure.scm (measure): Fix bitrot.
* libguile/vm.c (VM_ENABLE_STACK_NULLING): Undefine this, as it hasn't
caught any errors in quite a while.
Diffstat (limited to 'libguile/vm.c')
-rw-r--r-- | libguile/vm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/vm.c b/libguile/vm.c index ed69bd995..d75fed841 100644 --- a/libguile/vm.c +++ b/libguile/vm.c @@ -66,8 +66,8 @@ /* We can add a mode that ensures that all stack items above the stack pointer are NULL. This is useful for checking the internal consistency of the VM's assumptions and its operators, but isn't necessary for normal operation. It - will ensure that assertions are enabled. */ -#define VM_ENABLE_STACK_NULLING + will ensure that assertions are enabled. Slows down the VM by about 30%. */ +/* #define VM_ENABLE_STACK_NULLING */ #if defined (VM_ENABLE_STACK_NULLING) && !defined (VM_ENABLE_ASSERTIONS) #define VM_ENABLE_ASSERTIONS |