From 8098d689fe6a9fa26c305174f89035738adef795 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 12 Dec 2001 15:01:25 +0000 Subject: [PATCH] [project @ 2001-12-12 15:01:25 by simonmar] Fix a couple of assertions. --- ghc/rts/ProfHeap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghc/rts/ProfHeap.c b/ghc/rts/ProfHeap.c index 73ca19d..38a9aaa 100644 --- a/ghc/rts/ProfHeap.c +++ b/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 * @@ -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; -- 1.7.10.4