guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] 06/06: Fix build on platforms where the stack grows upwa


From: Ludovic Courtès
Subject: [Guile-commits] 06/06: Fix build on platforms where the stack grows upwards.
Date: Wed, 12 Feb 2020 05:43:31 -0500 (EST)

civodul pushed a commit to branch stable-2.2
in repository guile.

commit 51a52cd6c635abee6b742a7d9241eca513a41f96
Author: John Paul Adrian Glaubitz <address@hidden>
AuthorDate: Tue Feb 4 13:11:53 2020 +0100

    Fix build on platforms where the stack grows upwards.
    
     * libguile/continuations.c (scm_dynthrow): Fix missing mra
       parameter to grow_stack for SCM_STACK_GROWS_UP.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 libguile/continuations.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libguile/continuations.c b/libguile/continuations.c
index 80914bc..c02598b 100644
--- a/libguile/continuations.c
+++ b/libguile/continuations.c
@@ -302,7 +302,7 @@ scm_dynthrow (SCM cont)
 
 #if SCM_STACK_GROWS_UP
   if (dst + continuation->num_stack_items >= &stack_top_element)
-    grow_stack (cont);
+    grow_stack (cont, mra);
 #else
   dst -= continuation->num_stack_items;
   if (dst <= &stack_top_element)



reply via email to

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