From d5d6e93324c5858581edfccf65d8ec8d5a7cb09e Mon Sep 17 00:00:00 2001 From: simonm Date: Mon, 22 Mar 1999 11:26:03 +0000 Subject: [PATCH] [project @ 1999-03-22 11:26:03 by simonm] raise# now prints "uncaught exception" if it finds a STOP_FRAME. --- ghc/rts/Updates.hc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/rts/Updates.hc b/ghc/rts/Updates.hc index daecd28..e40dce9 100644 --- a/ghc/rts/Updates.hc +++ b/ghc/rts/Updates.hc @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Updates.hc,v 1.10 1999/03/18 17:57:24 simonm Exp $ + * $Id: Updates.hc,v 1.11 1999/03/22 11:26:03 simonm Exp $ * * (c) The GHC Team, 1998-1999 * @@ -640,7 +640,7 @@ FN_(raisezh_fast) break; case STOP_FRAME: - barf("raisezh_fast: STOP_FRAME"); + barf("uncaught exception"); default: barf("raisezh_fast: weird activation record"); -- 1.7.10.4