diff options
-rw-r--r-- | libguile/_scm.h | 2 | ||||
-rw-r--r-- | module/system/vm/assembler.scm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libguile/_scm.h b/libguile/_scm.h index d84209c92..2792fd29e 100644 --- a/libguile/_scm.h +++ b/libguile/_scm.h @@ -268,7 +268,7 @@ void scm_ia64_longjmp (scm_i_jmp_buf *, int); /* Major and minor versions must be single characters. */ #define SCM_OBJCODE_MAJOR_VERSION 3 -#define SCM_OBJCODE_MINOR_VERSION 7 +#define SCM_OBJCODE_MINOR_VERSION 8 #define SCM_OBJCODE_MAJOR_VERSION_STRING \ SCM_CPP_STRINGIFY(SCM_OBJCODE_MAJOR_VERSION) #define SCM_OBJCODE_MINOR_VERSION_STRING \ diff --git a/module/system/vm/assembler.scm b/module/system/vm/assembler.scm index 117bc6cf3..2ee608111 100644 --- a/module/system/vm/assembler.scm +++ b/module/system/vm/assembler.scm @@ -1754,7 +1754,7 @@ needed." ;; FIXME: Define these somewhere central, shared with C. (define *bytecode-major-version* #x0202) -(define *bytecode-minor-version* 7) +(define *bytecode-minor-version* 8) (define (link-dynamic-section asm text rw rw-init frame-maps) "Link the dynamic section for an ELF image with bytecode @var{text}, |