From d5a626e4bf05037070bd3812794cf2cabd25f07b Mon Sep 17 00:00:00 2001 From: rrt Date: Wed, 20 Dec 2000 15:26:50 +0000 Subject: [PATCH] [project @ 2000-12-20 15:26:50 by rrt] #ifdef declaration of stg_BCO on GHCI (because otherwise it's not defined) --- ghc/includes/StgMiscClosures.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ghc/includes/StgMiscClosures.h b/ghc/includes/StgMiscClosures.h index 0915b24..9ccc5dc 100644 --- a/ghc/includes/StgMiscClosures.h +++ b/ghc/includes/StgMiscClosures.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: StgMiscClosures.h,v 1.30 2000/12/20 14:47:22 sewardj Exp $ + * $Id: StgMiscClosures.h,v 1.31 2000/12/20 15:26:50 rrt Exp $ * * (c) The GHC Team, 1998-1999 * @@ -34,7 +34,9 @@ STGFUN(stg_SE_CAF_BLACKHOLE_entry); #if defined(PAR) || defined(GRAN) STGFUN(stg_RBH_entry); #endif +#ifdef GHCI STGFUN(stg_BCO_entry); +#endif STGFUN(stg_EVACUATED_entry); STGFUN(stg_FOREIGN_entry); STGFUN(stg_WEAK_entry); -- 1.7.10.4