
8 Sep
2010
8 Sep
'10
6:54 p.m.
On Wednesday 08 September 2010 18:10:26, Don Stewart wrote:
Can you put your benchmark code somewhere?
Boiled down to the bare minimum, module Main (main) where import System.Environment (getArgs) import qualified Data.ByteString.Lazy as L main :: IO () main = do (file : _) <- getArgs L.readFile file >>= L.putStr Then all you need is a file of nontrivial size (a few 10KB is enough to show it).
Likely a GHC regression.
That's what I think.