From: Simon Marlow Date: Mon, 30 Jul 2007 15:39:59 +0000 (+0000) Subject: FIX compacting GC (bug1010, and other failures) X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=6494b3cb78498363a2578a62d6cbbf3f55793e2a;hp=6494b3cb78498363a2578a62d6cbbf3f55793e2a;p=ghc-hetmet.git FIX compacting GC (bug1010, and other failures) Compacting GC interacts badly with the new pointer-tagging feature, as it also uses the low bits of a pointer to encode some information during a collection. My original workaround didn't work, this more elaborate fix should be better. ---