Skip to content
Snippets Groups Projects
Commit 4c0ca9cf authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 2000-09-04 15:09:49 by simonmar]

Fix a bug in freeStablePtr, the weight being subtracted from the entry
in the stable pointer table was wrong.
parent a7eae667
No related merge requests found
/* -----------------------------------------------------------------------------
* $Id: Stable.h,v 1.5 2000/04/13 15:37:11 panne Exp $
* $Id: Stable.h,v 1.6 2000/09/04 15:09:49 simonmar Exp $
*
* (c) The GHC Team, 1998-1999
*
......@@ -48,7 +48,8 @@ freeStablePtr(StgStablePtr sp)
&& stable_ptr_table[sn].addr != NULL
&& stable_ptr_table[sn].weight > 0);
stable_ptr_table[sn].weight += (stgCast(StgWord,sp) & STABLEPTR_WEIGHT_MASK) >> STABLEPTR_WEIGHT_SHIFT;
stable_ptr_table[sn].weight +=
1 << ((((StgWord)sp & STABLEPTR_WEIGHT_MASK) >> STABLEPTR_WEIGHT_SHIFT) - 1);
}
extern inline StgStablePtr
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment