From 7dc073168e6efb3f40ab3cd43e7298dc76f8196f Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sun, 12 Aug 2007 03:30:42 +0000 Subject: [PATCH] Do _not_ do SAVE_CONT after returning from compiled code. Assume that the compiled-code interface has left the stack in the correct state. --- v7/src/microcode/interp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 -- 2.25.1