From: simonpj@microsoft.com Date: Tue, 9 Mar 2010 17:31:00 +0000 (+0000) Subject: Rule binders shouldn't have DFun pragmas X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=81e41fe31fb27b6330762d93ce90eb98899beb24;hp=81e41fe31fb27b6330762d93ce90eb98899beb24;p=ghc-hetmet.git Rule binders shouldn't have DFun pragmas When DsBinds deals with a SPECIALISE pragma, it makes up the binders for a RULE. These binders should be very vanilla: no IdInfo of any sort. But the way it was before they could have DFun pragmas, which led to Bad Joss downstream. (Actually to cause a downstream *error* was itself a bug, which I've fixed, but it's clearly wrong for them to be DFuns!) ---