Created
October 14, 2010 11:29
-
-
Save sjoerdvisscher/626056 to your computer and use it in GitHub Desktop.
How to make ghc loop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE EmptyDataDecls #-} | |
data Empty | |
data Loop = CLoop (Loop -> Empty) | |
loop_step :: Loop -> Empty | |
loop_step b@(CLoop f) = f b | |
loop :: Empty | |
loop = loop_step (CLoop loop_step) |
You don't even need the EmptyDataDecls; changing Empty to () loops as well. Did you file a bug?
Apparently this is a known bug of the inliner. Adding NOINLINE fixes the problem.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It works fine if you turn Loop into a newtype.