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.
_______________________________________________
Glasgow-haskell-users mailing list
Glasgow-haskell-users@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users

Reply via email to