diff options
author | simonmar <unknown> | 2001-01-19 11:06:20 +0000 |
---|---|---|
committer | simonmar <unknown> | 2001-01-19 11:06:20 +0000 |
commit | 35ccc96f5fb6dd6849eb7f62b2a0ba4f6562fa6c (patch) | |
tree | 0163c709dd8647b87ac1efe5dbd2acc97d8ca49f /ghc/rts/FrontPanel.c | |
parent | 7a80ebc2c3303b4a4c566d2147a00f2276946e2c (diff) | |
download | haskell-35ccc96f5fb6dd6849eb7f62b2a0ba4f6562fa6c.tar.gz |
[project @ 2001-01-19 11:06:20 by simonmar]
DEAD_WEAK ==> stg_DEAD_WEAK
Diffstat (limited to 'ghc/rts/FrontPanel.c')
-rw-r--r-- | ghc/rts/FrontPanel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/rts/FrontPanel.c b/ghc/rts/FrontPanel.c index b87fce28b3..9f857255a6 100644 --- a/ghc/rts/FrontPanel.c +++ b/ghc/rts/FrontPanel.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: FrontPanel.c,v 1.2 2000/11/01 11:57:29 simonmar Exp $ + * $Id: FrontPanel.c,v 1.3 2001/01/19 11:06:20 simonmar Exp $ * * (c) The GHC Team 2000 * @@ -634,7 +634,7 @@ residencyCensus( void ) break; case CONSTR: - if (((StgClosure *)p)->header.info == &DEAD_WEAK_info) { + if (((StgClosure *)p)->header.info == &stg_DEAD_WEAK_info) { size = sizeofW(StgWeak); type = Other; break; |