summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/codeGen/should_run/cgrun060.hs
blob: a7558029d42cae226c9519e79a46c5296a63984f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- tickled a bug in stack squeezing in 6.8.2.  unsafePerformIO calls
-- noDuplicate#, which marks the update frames on the stack, and was
-- preventing subsequent update frames from being collapsed with the
-- marked frame.

module Main where

import System.IO.Unsafe

main = print (sim (replicate 100000 ()))

sim []     = True
sim (_:xs) = badStack (sim xs)

goodStack x = fromJust (Just x)          --no stack overflow
badStack  x = unsafePerformIO (return x) --stack overflow

fromJust (Just x) = x