guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] branch stable-2.2 updated: Revert "Fix build on platform


From: Andy Wingo
Subject: [Guile-commits] branch stable-2.2 updated: Revert "Fix build on platforms where the stack grows upwards."
Date: Fri, 13 Mar 2020 12:29:09 -0400

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

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

The following commit(s) were added to refs/heads/stable-2.2 by this push:
     new 7839dc4  Revert "Fix build on platforms where the stack grows upwards."
7839dc4 is described below

commit 7839dc444b94568579c510737bc358fa6f4470ee
Author: Andy Wingo <address@hidden>
AuthorDate: Fri Mar 13 17:28:43 2020 +0100

    Revert "Fix build on platforms where the stack grows upwards."
    
    This patch was only meant to apply to the 3.0 branch.
---
 libguile/continuations.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libguile/continuations.c b/libguile/continuations.c
index c02598b..80914bc 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, mra);
+    grow_stack (cont);
 #else
   dst -= continuation->num_stack_items;
   if (dst <= &stack_top_element)



reply via email to

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