From 1060b59bec219335e4f54e991044027c12b70678 Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 14 Nov 2000 12:52:55 +0000 Subject: [PATCH] [project @ 2000-11-14 12:52:55 by simonmar] catch_info ==> stg_catch_info raise_entry ==> stg_raise_entry --- ghc/rts/Exception.hc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ghc/rts/Exception.hc b/ghc/rts/Exception.hc index d3605bd..fecdd60 100644 --- a/ghc/rts/Exception.hc +++ b/ghc/rts/Exception.hc @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Exception.hc,v 1.15 2000/11/13 14:40:37 simonmar Exp $ + * $Id: Exception.hc,v 1.16 2000/11/14 12:52:55 simonmar Exp $ * * (c) The GHC Team, 1998-2000 * @@ -282,8 +282,8 @@ VEC_POLY_INFO_TABLE(stg_catch_frame, CATCH_FRAME_BITMAP, NULL/*srt*/, 0/*srt_off * It is used in deleteThread when reverting blackholes. * -------------------------------------------------------------------------- */ -INFO_TABLE(catch_info,catch_entry,2,0,FUN,,EF_,0,0); -STGFUN(catch_entry) +INFO_TABLE(stg_catch_info,catch_entry,2,0,FUN,,EF_,0,0); +STGFUN(stg_catch_entry) { FB_ R2.cl = R1.cl->payload[1]; /* h */ @@ -329,8 +329,8 @@ FN_(catchzh_fast) * It is used in raisezh_fast to update thunks on the update list * -------------------------------------------------------------------------- */ -INFO_TABLE(stg_raise_info,raise_entry,1,0,THUNK,,EF_,0,0); -STGFUN(raise_entry) +INFO_TABLE(stg_raise_info,stg_raise_entry,1,0,THUNK,,EF_,0,0); +STGFUN(stg_raise_entry) { FB_ R1.cl = R1.cl->payload[0]; -- 1.7.10.4