From: Chris Hanson Date: Sun, 12 Aug 2007 03:30:42 +0000 (+0000) Subject: Do _not_ do SAVE_CONT after returning from compiled code. Assume that X-Git-Tag: 20090517-FFI~464 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=7dc073168e6efb3f40ab3cd43e7298dc76f8196f;p=mit-scheme.git Do _not_ do SAVE_CONT after returning from compiled code. Assume that the compiled-code interface has left the stack in the correct state. --- diff --git a/v7/src/microcode/interp.c b/v7/src/microcode/interp.c index fc1c84df7..81201b3af 100644 --- a/v7/src/microcode/interp.c +++ b/v7/src/microcode/interp.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: interp.c,v 9.106 2007/04/22 16:31:22 cph Exp $ +$Id: interp.c,v 9.107 2007/08/12 03:30:42 cph Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -1109,7 +1109,8 @@ Interpret (void) APPLICATION_ERROR (dispatch_code); default: - POP_RETURN_ERROR (dispatch_code); + Do_Micro_Error (dispatch_code, true); + goto internal_apply; } } #endif