guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] branch master updated: Bump objcode minor version to 4


From: Andy Wingo
Subject: [Guile-commits] branch master updated: Bump objcode minor version to 4
Date: Wed, 26 Aug 2020 15:47:12 -0400

This is an automated email from the git hooks/post-receive script.

wingo pushed a commit to branch master
in repository guile.

The following commit(s) were added to refs/heads/master by this push:
     new c8c67eb  Bump objcode minor version to 4
c8c67eb is described below

commit c8c67eba916d97488e5f6ac4c116fce4180a9c2c
Author: Andy Wingo <wingo@pobox.com>
AuthorDate: Wed Aug 26 21:46:42 2020 +0200

    Bump objcode minor version to 4
    
    * libguile/loader.h (SCM_OBJCODE_MINOR_VERSION): Accept up to version 4.
    * module/system/vm/assembler.scm (*bytecode-minor-version*): Produce
      version 4.
---
 libguile/loader.h              | 2 +-
 module/system/vm/assembler.scm | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libguile/loader.h b/libguile/loader.h
index 09fb0af..765714f 100644
--- a/libguile/loader.h
+++ b/libguile/loader.h
@@ -40,7 +40,7 @@
 /* Major and minor versions must be single characters. */
 #define SCM_OBJCODE_MAJOR_VERSION 4
 #define SCM_OBJCODE_MINIMUM_MINOR_VERSION 2
-#define SCM_OBJCODE_MINOR_VERSION 3
+#define SCM_OBJCODE_MINOR_VERSION 4
 #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 698d44d..8599aa0 100644
--- a/module/system/vm/assembler.scm
+++ b/module/system/vm/assembler.scm
@@ -2201,7 +2201,7 @@ needed."
 
 ;; FIXME: Define these somewhere central, shared with C.
 (define *bytecode-major-version* #x0300)
-(define *bytecode-minor-version* 3)
+(define *bytecode-minor-version* 4)
 
 (define (link-dynamic-section asm text rw rw-init frame-maps)
   "Link the dynamic section for an ELF image with bytecode @var{text},



reply via email to

[Prev in Thread] Current Thread [Next in Thread]