From: simonpj@microsoft.com Date: Fri, 18 Dec 2009 16:41:07 +0000 (+0000) Subject: Move loop-breaker info from original function to worker in work/wrap X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=ed0ad23b638a61f809f12fa25218da2921266b75;hp=ed0ad23b638a61f809f12fa25218da2921266b75;p=ghc-hetmet.git Move loop-breaker info from original function to worker in work/wrap When doing a w/w split, if the original function is a loop breaker then the worker (not the wrapper) becomes one instead. This isn't very important, because loop breaker information is recalculated afresh by the occurrence analyser, but it seems more kosher. And Lint was bleating piteously about things with InlineRules that were loop breakers. ---