From: simonmar Date: Thu, 25 Apr 2002 08:57:51 +0000 (+0000) Subject: [project @ 2002-04-25 08:57:51 by simonmar] X-Git-Tag: Approx_11550_changesets_converted~2100 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=016fe0deb912f044c9a35a26c1c37e2f405cdaac;p=ghc-hetmet.git [project @ 2002-04-25 08:57:51 by simonmar] Remove a bogus ASSERT (I *knew* I should have tested that last change properly... one bug per line, sigh). --- diff --git a/ghc/rts/Storage.c b/ghc/rts/Storage.c index abf309a..cda9af4 100644 --- a/ghc/rts/Storage.c +++ b/ghc/rts/Storage.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Storage.c,v 1.63 2002/04/25 04:54:55 sof Exp $ + * $Id: Storage.c,v 1.64 2002/04/25 08:57:51 simonmar Exp $ * * (c) The GHC Team, 1998-1999 * @@ -579,7 +579,6 @@ allocatePinned( nat n ) // we always return 8-byte aligned memory. bd->free must be // 8-byte aligned to begin with, so we just round up n to // the nearest multiple of 8 bytes. - ASSERT(((StgWord)bd->free & 7) == 0); n = (n+7) & ~7; // If we don't have a block of pinned objects yet, or the current