diff options
author | Andy Wingo <wingo@pobox.com> | 2018-09-20 11:22:15 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-09-20 11:22:15 +0200 |
commit | 4060728e0a171a17f8a7d4698602a72d093277bd (patch) | |
tree | 0e9c7a22fdf9272f058e798c5ed048aa14ea9333 /libguile/loader.h | |
parent | ce9169804e95e8156945c6ba9c2175565c3e52bb (diff) | |
download | guile-2.3.0.tar.gz |
Renumber instructions and bump objcode versionv2.3.0
* libguile/loader.h (SCM_OBJCODE_MINIMUM_MINOR_VERSION):
(SCM_OBJCODE_MINOR_VERSION): Bump version.
* module/system/vm/assembler.scm (*bytecode-minor-version*): Bump.
* libguile/vm-engine.c: Rearrange opcodes to be contiguous and in a
somewhat sensible order.
Diffstat (limited to 'libguile/loader.h')
-rw-r--r-- | libguile/loader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/loader.h b/libguile/loader.h index d9f632d1e..979d56085 100644 --- a/libguile/loader.h +++ b/libguile/loader.h @@ -39,8 +39,8 @@ /* Major and minor versions must be single characters. */ #define SCM_OBJCODE_MAJOR_VERSION 4 -#define SCM_OBJCODE_MINIMUM_MINOR_VERSION 0 -#define SCM_OBJCODE_MINOR_VERSION 0 +#define SCM_OBJCODE_MINIMUM_MINOR_VERSION 1 +#define SCM_OBJCODE_MINOR_VERSION 1 #define SCM_OBJCODE_MAJOR_VERSION_STRING \ SCM_CPP_STRINGIFY(SCM_OBJCODE_MAJOR_VERSION) #define SCM_OBJCODE_MINOR_VERSION_STRING \ |