Skip to content

Commit

Permalink
[project @ 2001-12-12 15:01:25 by simonmar]
Browse files Browse the repository at this point in the history
Fix a couple of assertions.
  • Loading branch information
simonmar committed Dec 12, 2001
1 parent 27f08e0 commit 8098d68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ghc/rts/ProfHeap.c
@@ -1,5 +1,5 @@
/* -----------------------------------------------------------------------------
* $Id: ProfHeap.c,v 1.33 2001/12/12 14:31:42 simonmar Exp $
* $Id: ProfHeap.c,v 1.34 2001/12/12 15:01:25 simonmar Exp $
*
* (c) The GHC Team, 1998-2000
*
Expand Down Expand Up @@ -617,8 +617,8 @@ aggregateCensusInfo( void )
drag_total += censuses[t].drag_total;
censuses[t].void_total = void_total;
censuses[t].drag_total = drag_total;
ASSERT( censuses[t].void_total < censuses[t].not_used );
ASSERT( censuses[t].drag_total < censuses[t].used );
ASSERT( censuses[t].void_total <= censuses[t].not_used );
ASSERT( censuses[t].drag_total <= censuses[t].used );
}

return;
Expand Down

0 comments on commit 8098d68

Please sign in to comment.